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