import * as React from 'react'; import { Dayjs } from 'dayjs'; import { DisabledTimes } from 'bonree-picker/lib/interface'; import { ShortcutOption } from '../../util'; interface PanelProps { hasLiveTail?: boolean; isLiveTail?: boolean; locale?: Record; visibily: boolean; format: string; maxDuration: number; recentlyUsed: ShortcutOption[]; curShortcut: ShortcutOption; shortcutList: ShortcutOption[]; disabledShortcutOptions?: { value: string; popoverContent?: React.ReactNode; }[]; onClose: () => void; onCancle: () => void; onCurShortcutChange: (option: ShortcutOption) => void; setUpdate: (update: boolean) => void; extraHelpContent?: React.ReactNode; pickerPrefixCls: string; customDisabledDate?: (date: Dayjs) => boolean; customDisabledTime?: (date: Dayjs) => DisabledTimes; } declare const Panel: React.FC; export default Panel;