export interface CursorData { startingPosition: number; valueLength: number; previousValueLength: number; hasSelection: boolean; } export interface NumberInputFormatOptions { prefix: string; suffix: string; decimals: number; decimalSeparator: string; thousandsSeparator: string; allowDecimal?: boolean; allowNegative?: boolean; maxLength?: number; }