import type { Ref } from 'vue'; import type { FieldNames } from '../Select'; /** * Parse `children` to `options` if `options` is not provided. * Then flatten the `options`. */ export default function useOptions(options: Ref, children: Ref, fieldNames: Ref): { options: import("vue").ShallowRef; valueOptions: import("vue").ShallowRef; labelOptions: import("vue").ShallowRef; };