/** * Coder API Error * * Typed error class for Coder REST API failures. * Includes HTTP details for consumer error mapping. * * @see s-9uap - sudopod-coder-sdk specification */ export declare class CoderApiError extends Error { readonly status: number; readonly body: string; readonly method: string; readonly path: string; constructor(status: number, body: string, method: string, path: string); static fromResponse(status: number, body: string, method: string, path: string): CoderApiError; get isNotFound(): boolean; get isConflict(): boolean; get isUnauthorized(): boolean; get isForbidden(): boolean; } //# sourceMappingURL=errors.d.ts.map