import { V1ServiceList } from "@kubernetes/client-node"; import * as React from "react"; import { IVssComponentProperties } from "../Types"; import "./ServiceDetails.scss"; export interface IServicesComponentProperties extends IVssComponentProperties { typeSelections: string[]; serviceList: V1ServiceList; nameFilter?: string; } export interface IServicesTableState { copiedRowIndex: number; } export declare class ServicesTable extends React.Component { constructor(props: IServicesComponentProperties); render(): React.ReactNode; componentDidMount(): void; private _openServiceItem; private _getColumns; private _renderPackageKeyCell; private _renderAgeCell; private _setCopiedRowIndex; private static _getServiceStatusWithName; private _filterService; private _selectionActionCreator; }