import { FormControl, FormGroup } from '@angular/forms'; import { BsModalRef } from 'ngx-bootstrap/modal'; import { ModalsComponent } from '../modals.component'; export declare class RequestReceiptComponent extends ModalsComponent { defaults: { CorpNum?: number; CorpName?: string; CEOName?: string; ContactName?: string; Addr?: string; Email?: string; PayerName?: string; }; form: FormGroup; CorpNum: FormControl; CorpName: FormControl; CEOName: FormControl; ContactName: FormControl; Addr: FormControl; Email: FormControl; PayerName: FormControl; constructor(modalRef: BsModalRef); private createFormControls; private createForm; ngOnInit(): void; }