import { EventEmitter, OnChanges } from '@angular/core'; import { FormControl } from '@angular/forms'; export declare class SubmitComponent implements OnChanges { form: FormControl; background: string; serverError: string; vClick: EventEmitter; isDisabled: boolean; constructor(); ngOnChanges(): void; private checkValidation(); click(): void; }