import { ToastType } from './toast-type.enum';
export declare class ToastMessage {
    message: string;
    type: ToastType;
    title?: string | undefined;
    duration: number;
    id: number;
    constructor(message: string, type: ToastType, title?: string | undefined, duration?: number);
}
