export declare abstract class BaseException extends Error { private readonly _details; protected constructor(message: string, _details?: string[]); getDetails(): string[]; }