/** * Invalid Configuration Error * Thrown when configuration is invalid or cannot be loaded */ import { DomainError } from './DomainError'; export declare class InvalidConfigurationError extends DomainError { constructor(message: string, errors?: string[]); static fromValidationErrors(errors: string[]): InvalidConfigurationError; getErrors(): string[]; hasErrors(): boolean; } //# sourceMappingURL=InvalidConfigurationError.d.ts.map