import type { TableColumnMask } from './interface'; export declare function applyMask(value: string, mask: string): string; export declare function processMaskedValue(value: string | number, mask: TableColumnMask): string; export declare function processInputWithMask(value: string, mask: TableColumnMask): { processedValue: string | number; displayValue: string; };