export declare class MaskSectionType {
    selectors: Array<string>;
    numeric: boolean;
    min?: number;
    max?: number;
    options?: Array<string>;
    regExp?: RegExp;
    minL?: number;
    maxL?: number;
    datePart?: string;
}
