UNPKG

@coin-voyage/paykit

Version:

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

15 lines (14 loc) 581 B
import type React from "react"; import { ROUTE } from "../../../types/routes"; type ModalPageRendererProps = { pages: Record<ROUTE, React.ReactNode>; pageId: ROUTE; currentDepth: number; prevDepth: number; positionInside?: boolean; transitionState: string; contentRef: (node: HTMLDivElement | null) => void; rendered: boolean; }; export declare function ModalPageRenderer({ pages, pageId, currentDepth, prevDepth, positionInside, transitionState, contentRef, rendered, }: ModalPageRendererProps): import("react/jsx-runtime").JSX.Element; export {};