/**
 * Copyright (c) 2018-2019 Aleksey Melnikov, True Directive Company.
 * @link https://truedirective.com/
 * @license MIT
*/
import { MaskSectionValue } from './mask-section-value.class';
export declare class MaskValue {
    inSection: boolean;
    sectionPos: number;
    before: string;
    section: MaskSectionValue;
    delimiter: string;
    after: string;
    nextSectionPos(): number;
    update(s: string, selStart: number): string;
    value(): string;
}
