import { OnInit, EventEmitter } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { MatStepper } from '@angular/material/stepper'; import { MatSort } from '@angular/material/sort'; import { MatPaginator } from '@angular/material/paginator'; import { MatTableDataSource } from '@angular/material/table'; import { SelectionModel } from '@angular/cdk/collections'; export interface tabledata { repaginate: boolean; status: string; sequence: number; formid: string; formtitle: string; description?: string; instructions?: string; editable: string; } export declare class StepperComponent implements OnInit { firstFormGroup: FormGroup; secondFormGroup: FormGroup; isEditable: boolean; columns: string[]; dataSource: MatTableDataSource; selection: SelectionModel; isShow: boolean; showStepper: boolean; onSave: EventEmitter; stepper: MatStepper; sort: MatSort; paginator: MatPaginator; constructor(); ngOnInit(): void; ngAfterViewInit(): void; onGenerateButton(index: number, stepper: MatStepper, event: any): void; /** Whether the number of selected elements matches the total number of rows. */ isAllSelected(): boolean; /** Selects all rows if they are not all selected; otherwise clear selection. */ masterToggle(): void; toggleDisplay(): void; CheckBoxChanged(model: any): void; onResize1(event: any): void; onSaveButton(event: any): void; onbuttonclick(event: any): void; }