import { HelpTriggerWeights } from '../HelpTriggerIcon'; export interface HelpTriggerStandaloneProps extends Pick, 'onClick' | 'aria-haspopup' | 'aria-controls' | 'aria-expanded'> { /** * Sets aria-label of the trigger. ariaLabel or ariaLabelledById MUST be set! */ ariaLabel?: string; /** * Sets aria-labelledby of the trigger. ariaLabel or ariaLabelledById MUST be set! */ ariaLabelledById?: string; /** Sets the text content of the HelpTriggerStandalone. */ children: React.ReactNode; /** * Sets the colors of the help trigger. Default: normal. */ weight?: HelpTriggerWeights; /** * Classname will be applied to the button element. */ className?: string; /** * Optional test id. */ testId?: string; /** Ref passed to the component */ ref?: React.Ref; } declare const HelpTriggerStandalone: React.FC; export default HelpTriggerStandalone;