index.d.ts 645 B

1234567891011121314
  1. import Select from './src/select.vue';
  2. import Option from './src/option.vue';
  3. import OptionGroup from './src/option-group.vue';
  4. import type { SFCWithInstall } from 'element-plus/es/utils';
  5. export declare const ElSelect: SFCWithInstall<typeof Select> & {
  6. Option: typeof Option;
  7. OptionGroup: typeof OptionGroup;
  8. };
  9. export default ElSelect;
  10. export declare const ElOption: SFCWithInstall<typeof Option>;
  11. export declare const ElOptionGroup: SFCWithInstall<typeof OptionGroup>;
  12. export * from './src/token';
  13. export * from './src/select';
  14. export type { SelectContext, OptionPublicInstance as SelectOptionProxy, OptionBasic, } from './src/type';