import React from 'react'; export interface PodCellProps { name: string; namespace?: string; age?: string; revision?: string; status: string; orderFinished?: boolean; active?: boolean; onClick?: () => void; } declare const PodCell: React.FC; export default PodCell;