import { Ref } from 'vue'; export declare const useGroupedOptions: (props: any) => { isGroup: (option: any) => boolean; sortOutGroups: (options: any) => any; flattenAndMarkGroupOptions: (options: any) => any; selectAllWithGroups: (filteredOptions: Ref, selectedOptionRef: Ref) => void; isIndeterminateGrouped: (filteredOptions: any, selectedOptionRef: Ref) => boolean; allSelectedGrouped: (filteredOptions: any, selectedOptionRef: Ref) => boolean; areAllPreviousSelected: (flatOptions: Ref, selectedOptionPrevious: Ref) => boolean; groupedChildOptionsLength: (options: any) => number; };