import { SearchValue } from '../../types'; import { IntervalProps } from '../home/types'; export declare namespace EventContentProps { interface Props { /** * 回显值 */ defaultValue?: SearchValue; /** * 默认值 */ value: SearchValue; /** * 展示列表 */ show?: string[]; /** * 是否查询中 */ onSearching?: (flag: boolean) => void; onUserDrill: IntervalProps.Props['onUserDrill']; onJumpWarning: IntervalProps.Props['onJumpWarning']; /** * 查询条件回调 */ onChange?: (data: SearchValue) => void; /** * 查询条件初始化 */ initSearch?: () => void; } }