import React, { FunctionComponent } from 'react'; import { TimeType } from '../../packages/timedetail/timedetail.taro'; export interface DateType { paneKey?: string | number; date: string; } export interface TimeSelectProps { className?: string; style: React.CSSProperties; visible?: boolean; height?: string; multiple?: boolean; title?: string; currentKey: string | number; currentTime: TimeType[]; dates: DateType[]; times: TimeType[]; select?: (selectTimeData: TimeType[]) => void; pannelChange?: (pannelKey: string | number, selectTimeData: TimeType[]) => void; timeChange?: (time: string, selectTimeData: TimeType[]) => void; onSelect?: (selectTimeData: TimeType[]) => void; onPannelChange?: (pannelKey: string | number, selectTimeData: TimeType[]) => void; onTimeChange?: (time: string, selectTimeData: TimeType[]) => void; } export declare const TimeSelect: FunctionComponent>;