/** A form control's resolved state from its `ctrlProp` part (E-SHEET W8). */ export interface FormControlProps { /** * §18.18.18-ish `ST_ObjectType` — `CheckBox`, `Radio`, `Spin`, `Scroll`, `Drop`, * `List`, `Buttons`, `Label`, `GBox`, `Dialog`, `EditBox`, `Note` … (the * producer's spelling kept). */ readonly objectType?: string; /** Checked state for a check/option button. */ readonly checked?: boolean; /** Current value for a spin / scroll / list control. */ readonly value?: number; } /** * Parse a `xl/ctrlProps/ctrlProp#.xml` part (a single ``) into the * control's {@link FormControlProps} — its `objectType` plus the bit of state the * listing shows (`checked` for check/option buttons, `val` for spin/scroll/list). */ export declare function parseFormControlProps(data: Uint8Array): FormControlProps;