import type { Variants } from "framer-motion"; import type React from "react"; import { ROUTE } from "../../../types/routes"; export declare const contentVariants: Variants; type ModalProps = { pages: Record; pageId: ROUTE; heading?: string; depth?: number; positionInside?: boolean; inline?: boolean; onClose?: () => void; onBack?: () => void; onInfo?: () => void; }; export default function Modal({ pages, pageId, heading, depth, positionInside, inline, onClose, onBack, onInfo, }: ModalProps): import("react/jsx-runtime").JSX.Element | null; export {};