import { FormGroup, FormBuilder } from '@angular/forms'; import { ContactFormService } from '../../services/contact-form.service'; import { Angulartics2GoogleTagManager } from 'angulartics2/gtm'; export declare class ContactComponent { private fb; contactService: ContactFormService; private angulartics2GoogleTagManager; contactForm: FormGroup; attemptToSubmit: boolean; constructor(fb: FormBuilder, contactService: ContactFormService, angulartics2GoogleTagManager: Angulartics2GoogleTagManager); createForm(): void; onClickSend(): void; sendAnotherMessage(): void; }