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