import React from 'react'; import type { Application } from '../application'; import type { IClusterSubgroup } from './filter/ClusterFilterService'; import type { ISortFilter } from '../filterModel'; export interface IClusterPodProps { grouping: IClusterSubgroup; application: Application; parentHeading: string; sortFilter: ISortFilter; } export interface IClusterPodState { showCloseButton: boolean; } export declare class ClusterPod extends React.Component { constructor(props: IClusterPodProps); close: () => void; render(): JSX.Element; private renderSubGroup; }