import React from 'react';
import type { ApolloClient } from '@apollo/client';
export interface Props<CacheShape> {
    readonly client: ApolloClient<CacheShape>;
    readonly children?: React.ReactNode;
}
export declare function ApolloProvider<CacheShape = any>({ client, children, }: Props<CacheShape>): JSX.Element;
//# sourceMappingURL=ApolloProvider.d.ts.map