import { ReactNode } from "react"; export interface modal { value: boolean; open: () => void; close: () => void; toggle: () => void; } type r = (e: any) => void; declare function Modal({ children, modal, title, full, }: { children?: ReactNode | r; className?: string; modal: modal; title: string; full?: boolean; delete?: boolean; }): JSX.Element; export default Modal;