import * as React from 'react'; import type { FieldNames, RawValueType } from '../Select'; /** * Parse `children` to `options` if `options` is not provided. * Then flatten the `options`. */ export default function useOptions(options: OptionType[], children: React.ReactNode, fieldNames: FieldNames, optionFilterProp: string, optionLabelProp: string): { options: OptionType[]; valueOptions: Map; labelOptions: Map; };