import { Api } from './api-types'; export declare const setBaseUrl: (newUrl: string) => void; export declare const setDefaultHeaders: (headers: Object) => void; export declare const postV1Drive: Api['postV1Drive']; export declare const getV1Drive: Api['getV1Drive']; export declare const getV1DriveId: Api['getV1DriveId']; export declare const putV1DriveId: Api['putV1DriveId']; export declare const deleteV1DriveId: Api['deleteV1DriveId']; export declare const putV1DriveIdMoveParentDirectory: Api['putV1DriveIdMoveParentDirectory']; export declare const getV1DriveActivity: Api['getV1DriveActivity']; export declare const getV1DriveActivityId: Api['getV1DriveActivityId']; export declare const postV1SharedDriveShare: Api['postV1SharedDriveShare']; export declare const getV1SharedDriveId: Api['getV1SharedDriveId']; export declare const getV1SharedDrive: Api['getV1SharedDrive']; export declare const postV1SharedDriveRevoke: Api['postV1SharedDriveRevoke']; export declare const getV1FileUpload: Api['getV1FileUpload']; export declare const postV1FileUploadMarkComplete: Api['postV1FileUploadMarkComplete']; export declare const postV1DriveLocationId: Api['postV1DriveLocationId']; export declare const getV1DriveLocationId: Api['getV1DriveLocationId']; export declare const putV1DriveLocationId: Api['putV1DriveLocationId']; type BuildOptions = { headers?: Object; }; export default function build(url: string, options?: BuildOptions): { postV1Drive: any; getV1Drive: any; getV1DriveId: any; putV1DriveId: any; deleteV1DriveId: any; putV1DriveIdMoveParentDirectory: any; getV1DriveActivity: any; getV1DriveActivityId: any; postV1SharedDriveShare: any; getV1SharedDriveId: any; getV1SharedDrive: any; postV1SharedDriveRevoke: any; getV1FileUpload: any; postV1FileUploadMarkComplete: any; postV1DriveLocationId: any; getV1DriveLocationId: any; putV1DriveLocationId: any; }; export {};