import type { Variants } from "framer-motion";
import type React from "react";
import { ROUTES } from "../../../types/routes";
export declare const contentVariants: Variants;
type ModalProps = {
    pages: Record<ROUTES, React.ReactNode>;
    pageId: string;
    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 {};
