import 'cross-fetch/polyfill'; import type { components, paths } from './schema.gen'; declare const client: { configure: (config: import("openapi-typescript-fetch/dist/cjs/types").FetchConfig) => void; use: (mw: import("openapi-typescript-fetch").Middleware) => number; path:

(path: P) => { method: (method: M) => { create: import("openapi-typescript-fetch/dist/cjs/types").CreateFetch; }; }; }; type ClientType = typeof client; export default client; export type { components, paths, ClientType };