import { SafeHtml } from '@angular/platform-browser';
export declare type ConfirmType = 'ErrorMessage' | 'Confirm';
export declare class ConfirmInterFace {
type?: ConfirmType;
description?: string | SafeHtml;
title?: string;
acceptText?: string;
declineText?: string;
}