export interface HelpExpanderInlineProps { /** Sets the text content of the help text that appears when expanded. */ children: React.ReactNode; /** Ref for the element that triggers the HelpExpanderInline */ controllerRef?: React.RefObject; /** Expands the component */ expanded?: boolean; /** Called when expander is open/closed. */ onExpand?: (isExpanded: boolean) => void; /** Classname will be applied to the button element. */ className?: string; /** Sets the data-testid attribute. */ testId?: string; /** Ref passed to the container element */ ref?: React.Ref; } declare const HelpExpanderInline: React.FC; export default HelpExpanderInline;