import type { UseSelectProps, UseSelectResult } from "./types.js"; export declare const useSelect: ({ defaultOpen, onClose, onOpenChange, open, value: valueProps, defaultValue, multiple, onUpdate, disabled, }: UseSelectProps) => UseSelectResult;