import React from 'react'; export type ModalSize = 'sm' | 'md' | 'lg' | 'xl'; export type ModalProps = { open: boolean; a11yTitle?: string; a11yDescription?: string; disableOutsideClose?: boolean; size?: ModalSize; className?: string; children: React.ReactNode; onOpenChange: (open: boolean) => void; }; export declare function Modal({ open, onOpenChange, a11yTitle, a11yDescription, size, className, children, disableOutsideClose, }: ModalProps): import("react/jsx-runtime").JSX.Element;