import { FormGroup } from '@angular/forms'; import { BaseComponent } from '../base/base.component'; /** * Recommended class for the form components. */ export declare abstract class FormComponent extends BaseComponent { /** * The FormGroup, that represents the form. */ group: FormGroup; /** * This variable show, if it is a create form. */ create: boolean; /** * This variable show, if it is a create form. */ readonly isCreateForm: boolean; /** * This variable show, if it is an Edit form. */ readonly isEditForm: boolean; }