import { OnInit } from '@angular/core'; import { MatDialogRef } from "@angular/material/dialog"; declare type PrompterType = 'SUCCESS' | 'ERROR' | 'WARNING'; declare type PrompterButtonTypes = 'BASIC' | 'PRIMARY' | 'WARN'; interface PrompterButton { text: string; type: PrompterButtonTypes; value: any; closeModal: boolean; } interface PrompterConfig { type: PrompterType; text: string; title: string; buttons: Array | boolean; } export declare class NewellPrompterComponent implements OnInit { dialogRef: MatDialogRef; config: PrompterConfig; type: PrompterType; title: string; text: string; buttons: Array; constructor(dialogRef: MatDialogRef, config: PrompterConfig); ngOnInit(): void; buttonClick(value: any): void; } export {};