export type DisableMode = "readonly" | "disabled"; export type LabelProps = { label: string; /** * Backend field-help code. A field inside a `FieldHelpProvider` shows the * label's info tooltip when the server has copy for this code. */ fieldCode?: string; showBullet?: boolean; style?: React.CSSProperties; width?: number; }; export declare function validateControlWidth(value: number | string | undefined, componentName: string): void;