import { StatusCodes as StatusCode } from 'http-status-codes'; import { SyntheticErrorLabel } from './BackendErrorLabel'; import { BackendErrorLabel } from '../http/'; export declare class BackendError extends Error { code?: StatusCode; label: BackendErrorLabel | SyntheticErrorLabel; message: string; constructor(message: string, label?: BackendErrorLabel | SyntheticErrorLabel, code?: StatusCode); } //# sourceMappingURL=BackendError.d.ts.map