UNPKG

@chipi-stack/nextjs

Version:

Chipi SDK for Next.js applications with server-side support

16 lines (13 loc) 541 B
import * as react_jsx_runtime from 'react/jsx-runtime'; import React from 'react'; interface ChipiClientProviderProps { children: React.ReactNode; apiPublicKey: string; environment?: "development" | "production"; } /** * Pure client component that handles all React hook imports * This component is marked with 'use client' to avoid server-side issues */ declare function ChipiClientProvider({ children, apiPublicKey, environment, }: ChipiClientProviderProps): react_jsx_runtime.JSX.Element; export { ChipiClientProvider };