import { default as React } from 'react'; export interface ModalProps { /** Optional element that opens the modal. Omit when controlling via `open`. */ trigger?: React.ReactNode; children: React.ReactNode; open?: boolean; onOpenChange?: (open: boolean) => void; title?: string; description?: string; className?: string; /** Show the top-right close button (default true). */ showClose?: boolean; } export declare const Modal: React.FC;