@chipi-stack/nextjs
Version:
Chipi SDK for Next.js applications with server-side support
16 lines (13 loc) • 514 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import React from 'react';
interface ChipiProviderProps {
children: React.ReactNode;
}
/**
* Server-side Chipi Provider for Next.js App Router
*
* This is the server component version that runs during SSR.
* It initializes the server SDK and passes configuration to the client provider.
*/
declare function ChipiProvider({ children }: ChipiProviderProps): Promise<react_jsx_runtime.JSX.Element>;
export { ChipiProvider, type ChipiProviderProps };