UNPKG

bknd

Version:

Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.

19 lines (18 loc) 544 B
import type { ContextModalProps } from "@mantine/modals"; import type { ReactNode } from "react"; export declare function OverlayModal({ context, id, innerProps: { content }, }: ContextModalProps<{ content?: ReactNode; }>): ReactNode; export declare namespace OverlayModal { var defaultTitle: undefined; var modalProps: { withCloseButton: boolean; classNames: { size: string; root: string; content: string; title: string; body: string; }; }; }