UNPKG

@fesjs/fes-design

Version:
18 lines (17 loc) 797 B
import type { SFCWithInstall } from '../_util/interface'; import Select from './select.vue'; import Option from './option'; import SelectGroupOption from './groupOption'; type SelectType = SFCWithInstall<typeof Select>; type OptionType = SFCWithInstall<typeof Option>; type SelectGroupOptionType = SFCWithInstall<typeof SelectGroupOption>; export { selectProps } from './props'; export type { SelectProps } from './props'; export declare const FSelect: SelectType; export { optionProps } from './option'; export type { OptionProps } from './option'; export declare const FOption: OptionType; export { selectGroupOptionProps } from './groupOption'; export type { SelectGroupOptionProps } from './groupOption'; export declare const FSelectGroupOption: SelectGroupOptionType; export default FSelect;