/** * Text styling options for text fields */ export interface EditTextOptions { /** Font size in points */ fontSize?: number; /** RGB color values (0-255) for text color */ fontColor?: number[]; /** Font family name */ font?: string; /** Whether this is a combed field (like SSN fields with individual character boxes) */ combing?: boolean; /** Maximum number of characters allowed */ maxLength?: number; }