import type { TagsPrimitiveProps } from "./TagsPrimitive.js"; export declare const useTags: (props: TagsPrimitiveProps) => { vm: { inputVm: { placeholder: string; value: string; }; valuesVm: { values: import("../domain/TagItemFormatted.js").TagItemFormatted[]; }; }; inputValue: (value: string) => void; addValue: () => void; removeValue: (value: string) => void; };