import { AfterViewInit } from '@angular/core'; import { FormBuilder, FormGroup } from '@angular/forms'; import { EvkFormComponentBase } from '@evomatik/evk-common'; import { NarrativaHechosModel } from '../../../models/narrativa-hechos.model'; export declare const MY_FORMATS: { parse: { dateInput: string; }; display: { dateInput: string; monthYearLabel: string; dateA11yLabel: string; monthYearA11yLabel: string; }; }; export declare class FormNarrativaComponent extends EvkFormComponentBase implements AfterViewInit { fb: FormBuilder; today: Date; idTipoSeleccionado: any; esNoticiaCriminal: any; constructor(fb: FormBuilder); ngAfterViewInit(): void; limpiarYMostrarForma(tipoSolicitud: any): void; verifyTipoSolicitud(tipo: string): void; protected readonly formBuild: FormGroup; generateDateFormatForNarrative(): void; }