import { QueryClient } from "@tanstack/react-query"; import type { SolanaClient } from "gill"; import React from "react"; /** * Provider to utilize gill hooks for Solana */ export declare function SolanaProvider({ client, children, queryClient, }: { client: SolanaClient; children: React.ReactNode; queryClient?: QueryClient; }): React.JSX.Element; //# sourceMappingURL=providers.d.ts.map