@coin-voyage/paykit
Version:
Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.
15 lines (14 loc) • 584 B
TypeScript
import type React from "react";
import { ROUTES } from "../../../types/routes";
type ModalPageRendererProps = {
pages: Record<ROUTES, React.ReactNode>;
pageId: string;
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 {};