import { JSX } from 'react'; export interface ModalTriggerProps { /** * Element that opens the modal when clicked. The element is cloned and receives * the `onClick` / `aria-*` props produced by floating-ui. */ children: JSX.Element; } export declare const ModalTrigger: { ({ children }: ModalTriggerProps): JSX.Element; displayName: string; }; export default ModalTrigger;