import type { ReactNode } from "react"; import type { GraphQLClient } from "@bota-apps/gql-client"; type GraphQLProviderProps = { client: GraphQLClient; children: ReactNode; }; export declare function GraphQLProvider({ client, children }: GraphQLProviderProps): import("react").JSX.Element; export {}; //# sourceMappingURL=graphqlProvider.d.ts.map