/// import type { ApolloClient } from '@apollo/client'; import type { Authentication } from './authentication/Authentication'; export interface CarbonContextValue { authentication: Authentication; client: ApolloClient | null; } export declare const CarbonContext: import("react").Context;