import type { FC } from "react"; export interface ToasterPanelProps { type: "success" | "failure"; message?: string; title?: string; showIcon?: boolean; onClickClose: () => void; onAnimationEnd?: () => void; } export declare const TOASTER_TYPE_OPTIONS: { readonly SUCCESS: "success"; readonly FAILURE: "failure"; }; export type ToasterType = (typeof TOASTER_TYPE_OPTIONS)[keyof typeof TOASTER_TYPE_OPTIONS]; export declare const ToasterPanel: FC;