import type { VcSelectDefaultOptionType } from '@antdv/ui/es/vue-components'; import type { FunctionalComponent } from 'vue'; export type OptGroupProps = Omit; export interface OptionGroupFC extends FunctionalComponent { /** Legacy for check if is a Option Group */ isSelectOptGroup: boolean; } interface OptionProps extends Omit { /** Save for customize data */ [prop: string]: any; } export interface OptionFC extends FunctionalComponent { /** Legacy for check if is a Option Group */ isSelectOption: boolean; } export {};