import type { SetupContext } from 'vue'; import type { SelectProps, SelectEmits } from './select'; export declare function useSelect(props: SelectProps, emit: SetupContext['emit']): { customOptions: import("vue").ComputedRef[]>; loadOptions: () => void; expandAttrs: import("vue").ComputedRef<{ loading: boolean | undefined; remoteMethod: (query: string) => void; onChange(value: SelectProps["modelValue"]): void; onVisibleChange(visible: boolean): void; }>; };