import type { Ref } from 'vue'; import type { FormOption } from '@inkline/inkline/types'; export interface RadioGroupInjection { name: Ref; value: Ref; size: Ref; color: Ref; disabled: Ref; readonly: Ref; onChange: (value: any) => void; onBlur: (event: FocusEvent) => void; } export type RadioGroupOption = FormOption;