import { Google } from './meets';
export declare class Auth {
    private static instance;
    google: Google;
    private constructor();
    static getInstance({ apiKey, loginUrl }: {
        apiKey: string;
        loginUrl: string;
    }): Auth;
}
