import type { Ref, SetupContext } from 'vue'; import type { IIDProps } from '../attributes/useID.js'; export declare const CurrentProps: { current: { type: StringConstructor; default: string; }; parent: { type: BooleanConstructor; default: boolean; }; }; export interface ICurrentProps { current?: string; parent?: boolean; } export interface ICurrentState { current: Ref; parent: Ref; } export interface IItemsCurrent extends ICurrentProps, IIDProps { } export declare function useItemsCurrent

(props: P, context: SetupContext>, elementRef: Ref, eventSuffix: string): { attr?: undefined; } | { attr: import("vue").ComputedRef<{ 'data-bv-current': string; }>; };