import React from 'react'; import type { DocumentNode } from 'graphql'; export interface QueryInfo { query: DocumentNode; variables?: Record; renderLoading?: boolean; hasProcessed: boolean; data?: unknown; } export interface CellCacheState { queryCache: Record; } interface Props { queryCache: Record; children?: React.ReactNode; } export declare const CellCacheContextProvider: ({ queryCache, children }: Props) => React.JSX.Element; export declare function useCellCacheContext(): CellCacheState; export {}; //# sourceMappingURL=CellCacheContext.d.ts.map