import type { FormatType, ImageType, State } from '../types.js';
/** Process all specified and upload them to Micrio */
export declare function upload(files: string[], opts: {
    destination: string;
    format: FormatType;
    type: ImageType;
    pdfScale: string;
    account?: string;
}, state: State): Promise<void>;
