import { InjectionKey } from 'vue';
import { ComponentSize } from '@vexip-ui/config';
export interface GroupState {
    size: ComponentSize;
    itemTag: string;
    activated: boolean;
    round: boolean;
    circle: boolean;
    block: boolean;
    loading: boolean;
}
export declare const GROUP_STATE: InjectionKey<GroupState>;
