import type { Ref } from 'vue'; type value = Array | string | number | null | undefined; interface UseSelectProps { value: value | Ref; url?: Ref; params?: Ref>; valueField?: string; pagination?: boolean; invalidate?: string; } export declare function useSelect(props: UseSelectProps): { onSearch: (v: any) => void; options: import("vue").ComputedRef[]>; Pagination: () => import("vue/jsx-runtime").JSX.Element | null; loading: import("vue").ComputedRef; }; export {};