import { GDriveOptions, GithubOptions } from '../types/types';
export default class Upload {
    static toGitHub(options: GithubOptions): Promise<{
        ref: string;
        node_id: string;
        url: string;
        object: {
            type: string;
            sha: string;
            url: string;
        };
    }>;
    static toGoogleDrive(options: GDriveOptions): Promise<any>;
}
