import { OnInit } from "@angular/core"; import { Observable } from "rxjs/Observable"; import { ConfigMap } from "../../../model/configmap.model"; import { ConfigMapStore } from "../../../store/configmap.store"; import { YamlEditor } from "../../../view/yaml.editor"; export declare class ConfigMapEditWrapperComponent implements OnInit { private store; configmap: Observable; yamlEditor: YamlEditor; constructor(store: ConfigMapStore); ngOnInit(): void; }