import type { FormGroupComponents, FormGroupValues } from '../common/types'; import type { FormParent } from './form-parent'; export interface FormGroup extends FormParent> { value: FormGroupValues; readonly components: TComponents; clone(): FormGroup; patchValue(value: Partial>): void; }