import { Plugin } from 'rollup';

interface Options {
    projectId: number;
    branchId: string;
    accessToken: string;
    files: FileInfo[];
}
interface FileInfo {
    path: string;
    assetId: number;
}
declare function upload(options: Options): Plugin;

export { upload as default };
export type { Options };
