export declare enum ToastTypes {
    primary = "toast-primary",
    success = "toast-success",
    warning = "toast-warning",
    error = "toast-error"
}
export declare type ToastType = keyof typeof ToastTypes;
