import React, { FunctionComponent } from 'react'; export interface TimeType { key?: string | number; list: string[]; } export interface TimeDetailProps { className?: string; currentKey: string | number; currentTime: TimeType[]; times: TimeType[]; select: (time: string) => void; } export declare const TimeDetail: FunctionComponent & React.HTMLAttributes>;