import { QueryParams } from 'fastapi-rtk/api-types'; type FetchOptions = Omit & { headers?: { [name: string]: string; }; }; interface CreateFetchParamsArgs { path: string; method: string; body?: Record; queryParams?: QueryParams; options?: FetchOptions; } interface CreateFetchParamsResult { fetchPath: string; options: Omit & { headers: { [name: string]: string; }; }; } export declare function createFetchParams(args: CreateFetchParamsArgs): CreateFetchParamsResult; export {};