import { type Endpoint } from './endpoints.js';
import { type FetchOptions } from './fetchStream.js';
interface SanityRequestOptions {
    apiHost: string;
    apiVersion: 'vX' | `v${number}-${number}-${number}`;
    endpoint: Endpoint;
    projectId: string;
    body?: string;
    tag?: string;
    token?: string;
}
export declare function toFetchOptions(req: SanityRequestOptions): FetchOptions;
export {};
//# sourceMappingURL=sanityRequestOptions.d.ts.map