import { Ref, ExtractPropTypes } from 'vue'; import { selectProps } from '../select'; type SelectProps = ExtractPropTypes; export interface SelectOptionDataHookStates { filterValue?: Ref; inputValue?: Ref; multipleInputValue?: Ref; multipleFilterValue?: Ref; } export declare function useSelectOptionData({ props, externalStates, }: { props: SelectProps; externalStates?: SelectOptionDataHookStates; }): { selected: Ref; }; export {};