export declare namespace Mask { interface Config { mask: Array | ((raw: string) => Array) | false; guide?: boolean; keepCharPositionsMask?: boolean; pipe?: (conformedValue: string, config: any) => false | string | Object; placeholderChar?: string; showMask?: boolean; } }