import { DataSource } from 'typeorm';
export declare class GoogleauthService {
    private readonly connection;
    constructor(connection: DataSource);
    onApplicationBootstrap(): void;
    private readonly SCOPES;
    private accessToken;
    private expiryTime;
    getAccessToken(): Promise<unknown>;
    createCredentials(credentials: any): Promise<{
        status: string;
        message: string;
    }>;
    scheduleTokenInitiation(): void;
}
