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