import type {InjectionKey} from 'vue' import type {ButtonProps} from '@moui/components/button' export interface ButtonGroupContext { size?: ButtonProps['size'] type?: ButtonProps['type'] } export const buttonGroupContextKey: InjectionKey = Symbol( 'buttonGroupContextKey' )