import React from "react"; import type { CSSProperties, ReactNode } from "react"; export interface HelperTextProps { /** * The helper message. */ readonly message: ReactNode; /** * `neutral` renders subdued text. `critical` renders an `alert` icon * followed by error-coloured text. * * @default "neutral" */ readonly status?: "neutral" | "critical"; /** * Element id. Auto-generated when omitted. Parent form fields can pass this * through (or let BaseUI `Field.Description` / `Field.Error` pass it via the * `render` prop) to wire `aria-describedby` on their control. */ readonly id?: string; /** Composed with the internal class. */ readonly className?: string; readonly style?: CSSProperties; } export declare const HelperText: React.ForwardRefExoticComponent>;