import { ToastType } from "../../lib/types";
import "./toast-asset.css";
export declare const ICONS: {
    SuccessIcon: () => import("react/jsx-runtime").JSX.Element;
    InfoIcon: () => import("react/jsx-runtime").JSX.Element;
    ErrorIcon: () => import("react/jsx-runtime").JSX.Element;
    WarningIcon: () => import("react/jsx-runtime").JSX.Element;
    CloseIcon: () => import("react/jsx-runtime").JSX.Element;
};
export declare const ToastAsset: React.FC<{
    type: ToastType;
    className: string;
}>;
