import { MaskitoOptions } from '@maskito/core'; /** * Maskito mask registry * --------------------- * The `Generator` functions from `@maskito/kit` provide access to built-ins: * - `date` * - `date-range` * - `date-time` * - `number` * - `time` */ export declare const FIELD_MASKS: { /** Date mask in mm/dd/yyyy format */ readonly Date: Required; /** Currency mask with dollar sign and two decimal places */ readonly Currency: Required; /** Percentage mask; whole numbers only */ readonly Percentage: Required; /** Credit card number mask with spaces every 4 digits */ readonly CCNumber: MaskitoOptions; /** CVC code mask with up to 4 digits */ readonly Cvc: MaskitoOptions; /** US phone number mask in (###) ###-#### format */ readonly Phone: MaskitoOptions; /** Only digits mask - unlimited length */ readonly OnlyDigits: MaskitoOptions; /** Default mask allowing any input - used as the fallback mask in `Field`.*/ readonly None: MaskitoOptions; }; export type FieldMaskName = keyof typeof FIELD_MASKS; //# sourceMappingURL=masks.d.ts.map