import { ReactNode } from 'react'; import { TriggerProps } from '../FloatingUI/FloatingUI.trigger'; export interface DialogTriggerProps extends TriggerProps { /** * The content that will trigger the Dialog. Forwards refs to the trigger element */ children: ReactNode; } export declare const Trigger: { ({ children, ...props }: DialogTriggerProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export interface DialogCloseTriggerProps extends TriggerProps { /** * The content that will close the Dialog. Forwards refs to the trigger element */ children: ReactNode; } export declare const CloseTrigger: { ({ children, ...props }: DialogCloseTriggerProps): import("react/jsx-runtime").JSX.Element; displayName: string; };