export interface DictionaryTriggerProps extends Pick, 'onClick' | 'onFocus' | 'onBlur'> { /** * Sets the content of the trigger. */ children: React.ReactNode; /** * Indicates that the trigger is in use. */ selected?: boolean; /** * Classname will be applied to the button element. */ className?: string; /** * Sets the data-testid attribute. */ testId?: string; /** * ref that is passed to the component */ ref?: React.Ref; } declare const DictionaryTrigger: React.FC; export default DictionaryTrigger;