import * as google from '@googleapis/drive';
import { Auth$UtilsGDrive } from '../index';
/**
 * Authentication token for Google APIs.
 * Generated by Google.
 */
export interface Token$GoogleApi {
    access_token: string;
    refresh_token: string;
    scope: string;
    token_type: string;
    expiry_date: number;
}
export declare function getDrive(auth?: Auth$UtilsGDrive): google.drive_v3.Drive;
