import { type NormalizedCacheObject, type InMemoryCacheConfig, ApolloClient, ApolloLink } from '@apollo/client'; type TApolloClientOptions = { cache?: InMemoryCacheConfig; restLink?: ApolloLink; }; declare const createApolloClient: (options?: TApolloClientOptions) => ApolloClient; export default createApolloClient;