import { Auth } from "googleapis";
interface AuthorizeOptions {
    scopes: string[];
    tokenPath: string;
    credentialPath: string;
}
export declare function authorize({ scopes, tokenPath, credentialPath, }: AuthorizeOptions): Promise<Auth.OAuth2Client>;
export {};
