@coin-voyage/paykit
Version:
Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.
19 lines (18 loc) • 653 B
TypeScript
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<ROUTE, React.ReactNode>;
pageId: ROUTE;
heading?: string;
depth?: number;
positionInside?: boolean;
inline?: boolean;
onClose?: () => void;
onExited?: () => void;
onBack?: () => void;
onInfo?: () => void;
};
export default function Modal({ pages, pageId, heading, depth, positionInside, inline, onClose, onExited, onBack, onInfo, }: ModalProps): import("react/jsx-runtime").JSX.Element | null;
export {};