import { CommandBase, CommandSimpleOptions } from '../../common/commands/command-base';
import { SimpleCommandState } from '../../common/commands/command-states';
import { DocumentFormat } from '../../common/document-format';
export declare class ExportDocumentCommandOptions {
    documentFormat?: DocumentFormat;
    reason?: string;
    documentName?: string;
    constructor(documentFormat?: DocumentFormat, reason?: string, documentName?: string);
}
export declare class ExportDocumentCommand extends CommandBase<SimpleCommandState> {
    getState(): SimpleCommandState;
    DEPRECATEDConvertOptionsParameter(parameter: ExportDocumentCommandOptions | any): any;
    executeCore(_state: SimpleCommandState, options: CommandSimpleOptions<ExportDocumentCommandOptions>): boolean;
    private getExportDocumentFormat;
    base64: string;
    private exportCore;
    isEnabled(): boolean;
    canModify(): boolean;
}
