import { OnInit } from '@angular/core'; import { MatDialogRef } from '@angular/material/dialog'; import { Store } from '@ngrx/store'; import { SidenavState } from '../../toolbar/shared/store'; export declare class InfoDialogComponent implements OnInit { dialogRef: MatDialogRef; private store; infoItems: Array; footer: Array; headerText: string; aboutusContent: any; contactusContent: any; constructor(dialogRef: MatDialogRef, store: Store); ngOnInit(): void; close(): void; createItems(): void; createAboutusContent(): void; createContactusContent(): void; } interface InfoItem { title: string; description: string; content: any; } export {};