import { JBChainId } from "juice-sdk-core"; import { PropsWithChildren } from "react"; /** * Context for project-specific contracts. */ export type JBChainContextData = { chainId: JBChainId | undefined; }; /** * Context for project-specific contracts. */ export declare const JBChainContext: import("react").Context; export declare function useJBChainId(): JBChainId | undefined; /** * Load project-specific contract addresses for a given JB project. * * If `include` arg not specified, all contracts are loaded */ export declare const JBChainProvider: ({ chainId, children, }: PropsWithChildren<{ chainId: JBChainId; }>) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=JBChainContext.d.ts.map