import { STATE, SIZE } from '../../constants'; export interface ToastProps { state: keyof typeof STATE; message: string; action?: { onClick: (event: React.MouseEvent) => void; label: string; }; close?: () => void; size?: keyof typeof SIZE; } declare const Toast: ({ state, message, action, close, size, }: ToastProps) => import("react/jsx-runtime").JSX.Element; export default Toast;