import type { SelectPrimitiveProps } from "./SelectPrimitive.js"; export declare const useSelect: (props: SelectPrimitiveProps) => { vm: { selectRoot: { value: string; }; selectTrigger: { placeholder: string; hasValue: boolean; displayResetAction: boolean; }; selectOptions: { options: import("../index.js").SelectOptionFormatted[]; }; }; changeValue: (value?: string) => void; resetValue: () => void; };