index.d.ts 393 B

123456789
  1. import type { PickerProps } from './Picker';
  2. import Picker from './Picker';
  3. import PickerPanel from './PickerPanel';
  4. import RangePicker from './RangePicker';
  5. import type { PickerPanelProps } from './PickerPanel';
  6. import type { RangePickerProps } from './RangePicker';
  7. export { PickerPanel, RangePicker };
  8. export type { PickerProps, PickerPanelProps, RangePickerProps };
  9. export default Picker;