import { Router } from "@angular/router"; import { PodService } from "../../../service/pod.service"; import { YamlEditor } from "../../../view/yaml.editor"; import { Pod } from "../../../model/pod.model"; export declare class PodEditToolbarComponent { private podService; private router; pod: Pod; yamlEditor: YamlEditor; constructor(podService: PodService, router: Router); save(): void; }