import type { HttpConnectionError } from "../typing/classes/http.typing.js";
export declare class CustomError extends Error {
    date: Date;
    constructor(name?: string, ...params: any[]);
}
export declare class ServiceError extends Error {
    #private;
    date: Date;
    constructor({ title, icon, time, ...data }: HttpConnectionError, ...params: any[]);
    view: () => Required<HttpConnectionError>;
}
