import React from 'react'; export type ModalKUIProps = { children: React.ReactNode; open: boolean; onClose: () => void; }; export declare const ModalKUI: ({ children, open, onClose }: ModalKUIProps) => import("react/jsx-runtime").JSX.Element;