index.d.ts 499 B

12345678910
  1. import Select from './Select';
  2. import Option from './Option';
  3. import OptGroup from './OptGroup';
  4. import type { SelectProps } from './Select';
  5. import BaseSelect from './BaseSelect';
  6. import type { BaseSelectProps, BaseSelectRef, BaseSelectPropsWithoutPrivate } from './BaseSelect';
  7. import useBaseProps from './hooks/useBaseProps';
  8. export { Option, OptGroup, BaseSelect, useBaseProps };
  9. export type { SelectProps, BaseSelectProps, BaseSelectRef, BaseSelectPropsWithoutPrivate };
  10. export default Select;