import { ConfigServiceInterface } from '.';
declare abstract class ConfigService implements ConfigServiceInterface {
    abstract get(name: string): string;
    abstract getNamespace(): string;
    abstract getService(): string;
}
export { ConfigService, };
//# sourceMappingURL=ConfigService.d.ts.map