/// export type GlobalOptions = { apiKey: string; apiUrl: string; projectId: string | number | undefined; }; export declare const QueryContext: import("react").Context; type Props = GlobalOptions; export declare const QueryProvider: ({ children, apiUrl, apiKey, projectId, }: React.PropsWithChildren) => import("react/jsx-runtime").JSX.Element; export {};