import type { InMemoryCacheConfig } from "@apollo/client";
import { InMemoryCache as OrigInMemoryCache } from "@apollo/client";
import { sourceSymbol } from "../bundleInfo.js";
/**
 * A version of `InMemoryCache` to be used with streaming SSR.
 *
 * For more documentation, please see {@link https://www.apollographql.com/docs/react/api/cache/InMemoryCache | the Apollo Client API documentation}.
 *
 * @public
 */
export declare class InMemoryCache extends OrigInMemoryCache {
    /**
     * Information about the current package and it's export names, for use in error messages.
     *
     * @internal
     */
    static readonly info: {
        pkg: string;
    };
    [sourceSymbol]: string;
    constructor(config?: InMemoryCacheConfig | undefined);
}
//# sourceMappingURL=WrappedInMemoryCache.d.ts.map