import type { InjectionKey } from 'vue'; declare type IModelType = boolean | string | number; export interface RadioGroupContext { name: 'PsRadioGroup'; modelValue: IModelType; fill: string; textColor: string; disabled: boolean; size: ComponentSize; radioGroupSize: ComponentSize; changeEvent: (val: IModelType) => void; } declare const radioGroupKey: InjectionKey; export default radioGroupKey;