UNPKG

vuestic-ui

Version:
12 lines (11 loc) 506 B
import { type Ref, type ExtractPropTypes } from 'vue'; import type { SelectOption } from '../types'; export declare const useStringValueProps: { separator: { type: StringConstructor; default: string; }; }; type UseStringValueProps = ExtractPropTypes<typeof useStringValueProps>; export declare const useStringValue: (props: UseStringValueProps, visibleSelectedOptions: Ref<SelectOption[]>, getText: (option: SelectOption) => string) => import("vue").ComputedRef<string>; export {};