import { MessageToastType } from "./MessageToastType"; export declare class ToastInstance { private text; private type; private onCancel; private tmrId; constructor(text: string, type: MessageToastType, onCancel: (ToastInstance: any) => void); get closed(): boolean; close(): void; }