import { OnInit } from '@angular/core'; import { FormGroup } from '@angular/forms'; export interface IField { field: string; label: string; type: string; regex: string; mask: string; value: string; } export declare class CustomFieldsComponent implements OnInit { params?: IField; disabled?: boolean; readonly?: boolean; required?: boolean; form: FormGroup; optionsBoolean: { label: string; value: string; }[]; constructor(); ngOnInit(): void; }