import { VNode } from 'vue'; import type { OptionProps } from './option'; import type { OptionGroupProps } from './optionGroup'; declare const generateOption: (child: VNode, parent: any, index: number, newKey?: string | number) => OptionProps; declare const getOptionsFromGroup: (selectChildren: VNode[]) => { optionGroups: OptionGroupProps[]; options: OptionProps[]; }; export { generateOption, getOptionsFromGroup };