import { Auth } from '.';
interface FetchOptions extends RequestInit {
    headers: Record<string, string>;
}
export type CustomFetchParams = {
    url: string;
    options: FetchOptions;
    auth: Auth;
    apiKey: string;
    body?: Record<string, any>;
};
export {};
