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