export type ErrorParamsValues = string | number | Date | null | undefined;
export type ErrorParams = Record<string, ErrorParamsValues>;
export declare class HttpError extends Error {
    code: number | null | undefined;
    private description;
    private title;
    constructor(message: string, title?: string | null, code?: number | null);
}
