import React from "react"; import type { Hex } from "viem"; import type { CarrotChain } from "./constants"; export * from "./connectors/templates-testing"; interface RootProps { supportedChain: CarrotChain; rpcURL: string; privateKey: Hex; ipfsGatewayURL: string; kpiTokenTemplateBaseURL?: string; oracleTemplateBaseURL?: string; templateId?: number; enableTemplatePreviewMode?: boolean; } export declare const Root: ({ supportedChain, rpcURL, privateKey, kpiTokenTemplateBaseURL, oracleTemplateBaseURL, ipfsGatewayURL, templateId, enableTemplatePreviewMode, }: RootProps) => React.JSX.Element; //# sourceMappingURL=library-mode-entrypoint.d.ts.map