import { Ref, PropType, ExtractPropTypes } from 'vue'; import type { SelectDropdownIcon } from '../types'; export declare const useToggleIconProps: { dropdownIcon: { type: PropType; default: () => SelectDropdownIcon; validator: (value: string | SelectDropdownIcon) => boolean; }; }; export declare const useToggleIcon: (props: ExtractPropTypes & { readonly: boolean; color: string; }, showDropdownContent: Ref) => { toggleIcon: import("vue").ComputedRef; toggleIconColor: import("vue").ComputedRef; };