import { OnInit } from '@angular/core';
import { FormControl } from '@angular/forms';
import 'rxjs/add/operator/takeUntil';
import { EzfaService } from '../../ezfa.service';
import { BaseComponent } from '../base.component';
export declare class PersistenceFormComponent extends BaseComponent implements OnInit {
    control: FormControl;
    persistenceLocal: boolean;
    id: string;
    constructor(service: EzfaService);
    ngOnInit(): void;
}
