export type DialogProps = {
    trigger: React.ReactNode;
    body: React.ReactNode;
    title?: string;
    description?: string;
    footer?: React.ReactNode;
    footerClassName?: string;
    contentClassName?: string;
    onOpenChange?: (open: boolean) => void;
    open?: boolean;
    onInteractOutside?: (e: any) => void;
    onOpenAutoFocus?: (e: any) => void;
    id?: string;
};
//# sourceMappingURL=dialog.types.d.ts.map