/** * Extendable custom error. */ export declare abstract class CustomError extends Error { constructor(message?: string); /** * Error name. */ get name(): string; }