import React from 'react'; import { PodCellProps } from '@/components/Pod/PodCell'; import { EnvAuthKey } from '../Auth'; interface PodCellularWithDetailsProps { dateSource: PodCellProps[]; orderFinished?: boolean; deployGroupName: string; appName?: string; envName?: string; taskSn?: string; envAuth?: Record; onClick?: () => void; } declare const Pod: React.FC; export default Pod;