export declare const maskValue: ({ currentValue, mask, previousValue, }: { currentValue: string | undefined; mask: string | string[] | undefined; previousValue?: string; }) => string; export declare const unmaskText: (mask: string) => string;