import type { ResponseType } from '../../services/http/omySetup'; import type { HttpType } from '../http/client'; export type HttpClientType = 'axios' | 'ofetch'; export declare const omyHttp: ({ api }: HttpType) => { get: (endpoint: string, options?: Record) => Promise; post: (endpoint: string, params: Record | BodyInit, options?: Record) => Promise; put: (endpoint: string, params: Record | BodyInit, options?: Record) => Promise; delete: (endpoint: string) => Promise; };