import { OAuthConfigStore } from './../../../store/oauth-config-store'; import { PodDeleteDialog } from "../delete-dialog/delete-dialog.pod.component"; import { Pods, Pod } from "../../../model/pod.model"; export declare class PodsListComponent { private oAuthConfigStore; pods: Pods; loading: boolean; prefix: string; hideCheckbox: boolean; deleteDialog: PodDeleteDialog; constructor(oAuthConfigStore: OAuthConfigStore); openDeleteDialog(deletePodModal: any, pod: any): void; consoleLogsUrl(pod: Pod): string; consoleTerminalUrl(pod: Pod): string; consoleUrl(pod: Pod): string; prefixPath(pathComponent: string): string; }