import { HTMLAttributes, ReactNode } from 'react'; export interface FormHelperTextProps extends Omit, 'children'> { children?: ReactNode; error?: boolean; disabled?: boolean; } /** * Helper/validation text under a field (replaces MUI `FormHelperText`). Inherits `error`/`disabled` * from a surrounding `StyledFormControl` when present, else from props. Public props preserved * (DEC-003). TASK-401. */ export declare const StyledFormHelperText: ({ children, error, disabled, className, ...rest }: FormHelperTextProps) => JSX.Element;