import type { TokenType } from "./tokens";
export declare type MaskItType = (value: string, mask: string, tokens: Record<string, TokenType>, masked?: boolean) => string;
export declare const maskIt: MaskItType;
