import { DatePickerTypes } from '@zgfe/business-lib/es/datePicker/types'; import { WholeChartTypes } from '../../types'; import { ReactNode } from 'react'; import { TargetConditionTypes } from '@zgfe/business-lib'; export interface AnalysisSubject { subjectId?: number; id?: number; name?: string; unit?: string; subjectAlias?: string; subjectName?: string; } export interface SearchPanelProps { refreshHandle: Function; time?: DatePickerTypes.Value; eventId?: number; chartType?: WholeChartTypes; optionNode?: ReactNode; onChange?: (data: SearchPanelProps) => void; setIsCity?: Function; dimension?: TargetConditionTypes.DimensionValue; setDimension?: Function; }