export declare class ConfigurationError extends Error {
    private readonly propertyName;
    readonly reason: string;
    constructor(propertyName: string, reason: string);
    getProperty(): string;
    getReason(): string;
}
