import { UtilsGDrive } from '..';
import * as utils from '../utils/utilsMethods';
/**
 * Parameters for uploading a file to Google Drive.
 */
export interface Params$Upload {
    localPath: string;
    parentIdentifiers?: utils.Identifiers | string;
    overwrite?: boolean;
    update?: boolean;
    sharedDriveId?: string;
}
export declare function upload(this: UtilsGDrive, params: Params$Upload | string): Promise<string>;
