import { Ref, ComputedRef } from 'vue'; export declare const SelectProvider: (opts: any) => void, useSelectContext: (fallback?: any) => any; export declare function useSelect(props: any, emit: any): { onSelect: (value: any, label: string) => void; handleCompare: (value: string) => any; isPopoverOpen: Ref; getLabel: ComputedRef; };