export declare abstract class ConfigurationProvider {
    abstract loadConfigObject(): any;
    toString(): string;
}
