export interface APIFetchOptions extends RequestInit { headers?: Record; path?: string; url?: string; /** * @default true */ parse?: boolean; data?: any; namespace?: string; endpoint?: string; } export declare type APIFetchMiddleware = (options: APIFetchOptions, next: (nextOptions: APIFetchOptions) => Promise) => Promise; //# sourceMappingURL=types.d.ts.map