import type { FormControl } from '@angular/forms'; export interface CuiInstructionFormGroup { readonly title: FormControl; readonly description: FormControl; } export interface CuiInstructionFormValues { readonly title: string; readonly description: string; }