export declare abstract class LoggableError {
    constructor();
    abstract toString(): string;
    log(): void;
}
