import { InvalidDocumentMode } from '../../../../common/formats/utils/enums';
export declare class ImporterOptions {
    invalidDocumentMode: InvalidDocumentMode;
    ignoreParseErrors: boolean;
    allowIntPercentage: boolean;
    createEmptyDocumentOnLoadError: boolean;
    throwInvalidFile: (reason: string) => void;
    ignoreDeletedText: boolean;
    ignoreInsertedText: boolean;
    ignoreComments: boolean;
    constructor(throwInvalidFile?: (reason: string) => void);
}
