/** * The one error type the SDK throws. Carries the HTTP status, a * best-effort-parsed body (JSON when parseable, raw text otherwise), and * a message. Consumers discriminate on `status` or match on `body` shape. * * The SDK exposes only `ApiError`; there is no compatibility alias or * alternate error hierarchy. */ export declare class ApiError extends Error { readonly status: number; readonly body?: unknown | undefined; constructor(status: number, message: string, body?: unknown | undefined); } //# sourceMappingURL=errors.d.ts.map