import type { InjectionKey } from 'vue'; /** * Injects a group state */ export declare function useGroupStateInject(groupKey: InjectionKey): { group: GroupStateType | undefined; isInGroup: globalThis.ComputedRef; getGroupOrLocalRef: (propName: TName, props: TProps, emit?: (event: string, ...args: unknown[]) => void) => GroupStateType[TName]; };