import React from 'react'; import { EnvAuthKey } from '../Auth'; interface PodDetailsProps { visible: boolean; onClose: () => void; afterClose?: () => void; namespace: string; podName: string; poolName: string; trackPage?: string; deployGroupName: string; appName?: string; envName?: string; taskSn?: string; pollInterval?: number; envAuth?: Record; apiHeaderFn: () => void; } declare const PodDetails: React.FC; export declare const PodDetailDrawer: import("../QuickDialog").default>; export default PodDetails;