import { ValidatorFn } from '@angular/forms'; export interface FormInput { type: string; validators: ValidatorFn[]; label: string; icon: string; } export interface FormSelectInput extends FormInput { options: string[]; } export interface FormSchema { [key: string]: FormInput | FormSelectInput; }