import { MatDialogRef } from '@angular/material/dialog'; import { SimpleModalData, SocialMediaArray } from './simple-modal.data'; export declare class SimpleModalComponent { dialogRef: MatDialogRef; data: SimpleModalData; /** * Inject needed interface SimpleModalData. */ constructor(dialogRef: MatDialogRef, data: SimpleModalData); /** * Indicates default height value for modal. * @default '400px' */ height: string; /** * Indicates default width value for modal. * @default '500px' */ width: string; /** * Indicates default body text for modal. * @default 'Body content' */ bodyText: string; /** * Indicates default title text for modal. * @default 'Title' */ titleText: string; /** * Indicates default values for simple modal in this case specifically it is a the modal image. * @default '/assets/img/comming-soon.svg' */ bodyImage: string; /** * Indicates if social media icon should be displayed. * @default false */ socialMedia: boolean; /** * Indicates which social media icon with URL and image should be displayed in modal. */ socialMediaArray: SocialMediaArray[]; /** * Indicates if primary button should be displayed and which text it should have. * @default 'Primary Button' */ yesText: string; /** * Indicates if secundary button should be displayed and which text it should have. * @default 'Secundary Button' */ noText: string; /** * Function which close modal. */ closeDialog(): void; }