UNPKG

@coin-voyage/paykit

Version:

Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.

18 lines (17 loc) 619 B
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 {};