import { Type } from '@angular/core';
import { Validation } from 'io-ts';
export declare class InvalidConfigurationError<C> extends Error {
    component: Type<C>;
    validation: Validation<C>;
    config?: C;
    constructor(component: Type<C>, validation: Validation<any>, config?: any);
}
