export declare class MaskSectionValue {
    beforeChars: string;
    currentChar: string;
    afterChars: string;
    append(s: string): void;
    value(newChar?: string): string;
    readonly length: number;
    constructor(value: string, sectionPos: number, selStart: number);
}
