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