export declare enum NotificationType {
    Success = "success",
    Error = "error",
    Warning = "warning",
    Info = "info",
    Neutral = "neutral"
}
export interface NotificationMessage {
    id?: string;
    type: NotificationType;
    title: string;
    description: string;
    duration?: number;
    templateRef?: any;
    templateContext?: any;
}
export interface NotificationConfig {
    maxMessages?: number;
    defaultDuration?: number;
}
export type NotificationPosition = 'top-right';
//# sourceMappingURL=snackbar.models.d.ts.map