import { BaseError } from '@zetapush/common'; export declare class ConfigurerError extends BaseError { constructor(message: string, cause?: Error); } export declare class ConfigurationValidationError extends ConfigurerError { invalids: Error[]; constructor(message: string, invalids: Error[]); toString(): string; } export declare class MissingMandatoryConfigurationError extends ConfigurerError { constructor(message: string); } export declare class InstantiationError extends ConfigurerError { constructor(message: string, cause: Error); }