/** Angular2 */ import * as ng from "@angular/core"; /** Core */ import { CoreComponent } from "cmf.core/src/core"; import { DialogFeedbackShowOptions } from 'cmf.core/src/domain/extensions/dialog'; import { PageBag } from "../page/pageBag"; export declare class DialogFeedback extends CoreComponent { headerIcon: string; headerTitle: string; bodyIcon: string; bodyMessage: string; bodySubMessage: string; buttons: any; constructor(elementRef: ng.ElementRef, pageBag: PageBag); } export interface DialogFeedbackPageBag extends PageBag { context: DialogFeedbackShowOptions; }