import { B as BlindpayApiResponse } from './index.d-D-hL-9i-.js'; /** * * Internal API client interface that resources use to make HTTP requests. * This interface is not exposed to SDK users. */ interface InternalApiClient { get: (path: string) => Promise>; post: (path: string, body: Record) => Promise>; put: (path: string, body: Record) => Promise>; patch: (path: string, body: Record) => Promise>; delete: (path: string, body?: Record) => Promise>; } export type { InternalApiClient as I };