/** * Normalizes fullwidth digits (U+FF10–U+FF19) to ASCII digits (0–9). * Japanese and Chinese IME keyboards commonly input fullwidth digits * that look identical to ASCII digits but are stripped by numeric filtering. */ /** * @param value - Input value potentially containing fullwidth digits * @returns Value with fullwidth digits converted to ASCII * * @example * normalizeFullWidthDigits("123") // Returns: "123" */ export declare function normalizeFullWidthDigits(value: string): string;