export declare const DynamicModal: ({ open, onClose, title, children, handleSaveAction, buttons, ...rest }: { open: boolean; onClose: () => void; title: string; children?: React.ReactNode; buttons?: any[]; handleSaveAction?: () => void; }) => import("react/jsx-runtime").JSX.Element; export default DynamicModal;