/// export declare enum ToastType { NORMAL = "normal", POSITIVE = "positive", NEGATIVE = "negative", WARNING = "warning", DARK = "dark" } export declare enum ToastActionType { LINK = "link", BUTTON = "button" } export declare const defaultIconMap: { normal: import("react").FC; positive: import("react").FC; negative: import("react").FC; warning: import("react").FC; dark: import("react").FC; }; export type ToastAction = { type: ToastActionType; content?: string; text?: string; href?: string; };