export declare class GoogleUpload {
  constructor(accessToken: string);
  upload(data: string, fileName?: string): Promise<string>;
  download(fileId: string): Promise<string>;
}
