import { HttpOptions, KyResponse } from "../http/client.js"; import "../http/index.js"; //#region src/server/bunny/client.d.ts type BunnyRequestArgs = { accept?: boolean; apiKey: string; contentType?: string; genericError: string; method: 'delete' | 'get' | 'post' | 'put'; statusErrors?: Record; url: string; } & Pick; declare const bunnyRequest: ({ accept, apiKey, body, contentType, genericError, json, method, searchParams, statusErrors, throwHttpErrors, timeout, url }: BunnyRequestArgs) => Promise; //#endregion export { bunnyRequest }; //# sourceMappingURL=client.d.ts.map