import type { InjectionKey, Ref } from 'vue'; export interface IButtonGroupContext { modelValue: Ref; emitChange(value: string | number): void; fit: Ref; bordered: Ref; showBg: Ref; } export declare const BUTTON_GROUP_INJECT_KEY: InjectionKey;