import { ReactElement } from 'react'; export type DropdownTriggerProps = { /** * The content of the trigger item (button, icon, etc) */ children: ReactElement; }; export declare const DropdownTrigger: ({ children }: DropdownTriggerProps) => ReactElement>;