import { Pod } from 'kubernetes-models/v1'; /** * Props for PendingPodContent * * @public */ export interface PendingPodContentProps { pod: Pod; } /** * Shows details about pod's conditions as it starts * * @public */ export declare const PendingPodContent: ({ pod }: PendingPodContentProps) => import("react/jsx-runtime").JSX.Element;