import { OnInit, EventEmitter, OnChanges, OnDestroy, SimpleChanges } from '@angular/core'; import { Store } from '@ngxs/store'; import { Subscription } from 'rxjs/internal/Subscription'; import { Formulaire } from '../poo/formulaire'; import * as i0 from "@angular/core"; export declare class FormulaireComponent implements OnInit, OnChanges, OnDestroy { private store; formulaire: Formulaire; data: { nom: string; value: Object[]; }[]; uploadsUrl: string[]; reponse: EventEmitter<{ nom: string; value: any; }[]>; toUploads: EventEmitter; updateMatrice: EventEmitter; message: { class: string[]; text: string; }[]; modaleActive: any; sub: Subscription[]; constructor(store: Store); ngOnInit(): void; ngOnChanges(changements: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }