import { type Ref, type ExtractPropTypes } from 'vue'; import type { SelectOption } from '../types'; export declare const useStringValueProps: { separator: { type: StringConstructor; default: string; }; }; type UseStringValueProps = ExtractPropTypes; export declare const useStringValue: (props: UseStringValueProps, visibleSelectedOptions: Ref, getText: (option: SelectOption) => string) => import("vue").ComputedRef; export {};