import { ReactNode } from 'react'; interface ModalAction { label: string; onClick: () => void; variant?: "primary" | "neutral"; } interface ModalProps { isOpen: boolean; onClose: () => void; children: ReactNode; action?: ModalAction; position?: "center" | "bottom"; } export declare function Modal({ isOpen, onClose, children, action, position, }: ModalProps): import("react").JSX.Element; export {}; //# sourceMappingURL=Modal.d.ts.map