import { FIELD_TYPES, MedFormFieldConfig, PATTERN_TYPES } from 'med-dynamic-form';
import { CellDataConfigLocal } from '../../types/CellDataConfigLocal';
export interface EditorBuilderOptions extends CellDataConfigLocal {
    onLeave: () => void;
}
export declare class EditorBuilder implements MedFormFieldConfig {
    key: string;
    editorType: FIELD_TYPES;
    onLeave: () => void;
    autoFocus: boolean;
    wrappers: string[];
    inputMask: string;
    fieldWrapperSelector: string;
    pattern: PATTERN_TYPES;
    constructor(options: EditorBuilderOptions);
}
