export declare enum NotificationType {
    Default = "default",
    Error = "error",
    Info = "info",
    Success = "success",
    Warning = "warning"
}
export declare const playSound: () => void;
export declare const getDescription: (value: string | {
    [key: string]: any;
}) => string;
export declare const getToastIcon: (type: NotificationType) => string;
