/** * Error raised by the default WorkspaceProvider when the gateway returns a * non-2xx response. Consumers can branch on `status` (e.g. 409 = directory * non-empty, 503 = signed-URL not configured) and `code` (gateway's symbolic * error code) without parsing message strings. */ export declare class WorkspaceFileError extends Error { readonly status: number; readonly code: string; constructor(status: number, code: string, message: string); } //# sourceMappingURL=errors.d.ts.map