import React from 'react'; import './index.less'; export interface TimeSlot { value: string; label: string; time: string; remainingCount: number; disabled?: boolean; } export interface TimeResourceSelectorProps { timeSlots?: TimeSlot[]; multiple?: boolean; showUnavailable?: boolean; defaultExpanded?: boolean; defaultSelectFirst?: boolean; onChange?: (values: string | string[]) => void; className?: string; style?: React.CSSProperties; } declare const TimeResourceSelector: React.FC; export default TimeResourceSelector;