/**
 * Copyright (c) 2018-2019 Aleksey Melnikov, True Directive Company.
 * @link https://truedirective.com/
 * @license MIT
*/
import { MaskSectionType } from './mask-section-type.class';
export declare class MaskSettings {
    placeholder: string;
    replaceMode: boolean;
    autoCorrect: boolean;
    appendPlaceholders: boolean;
    allowIncomplete: boolean;
    incDecByArrows: boolean;
    defaultOptions: boolean;
    sectionTypes: Array<MaskSectionType>;
    constructor(placeholder: string, // Placeholder char
    replaceMode?: boolean);
}
