import type { ComputedRef, InjectionKey } from 'vue' export interface CFormFieldContext { controlId: ComputedRef describedBy: ComputedRef invalid: ComputedRef required: ComputedRef } export const cFormFieldKey: InjectionKey = Symbol('c-form-field')