export interface IExportCommand {
    urlCommand: string;
    contentType: string;
    fileType: string;
}
export declare function executeExportCommand(url: string, id: string, command: IExportCommand, ids: string[]): void;
