import type { Ref } from 'vue'; export interface FormGroupInjection { size: Ref; color: Ref; disabled: Ref; readonly: Ref; onInput: (name: any, value: any) => void; onBlur: (name: any, event: any) => void; }