import { HelpTriggerWeights } from '../HelpTriggerIcon/HelpTriggerIcon'; export interface HelpExpanderStandaloneProps { /** Sets aria-label of the trigger. */ ariaLabel?: string; /** Sets aria-labelledby of the trigger. */ ariaLabelledById?: string; /** Sets the text content of the help text that appears when expanded. */ children: React.ReactNode; /** Expands the component */ expanded?: boolean; /** Called when expander is open/closed. */ onExpand?: (isExpanded: boolean) => void; /** * Sets the colors of the help trigger. Default: normal. */ weight?: HelpTriggerWeights; /** * Classname will be applied to the button element. */ className?: string; /** Sets the data-testid attribute. */ testId?: string; /** The text that will be displayed in the trigger. */ triggerText: string; /** Ref passed to the component */ ref?: React.Ref; } declare const HelpExpanderStandalone: React.FC; export default HelpExpanderStandalone;