import { type FunctionalComponent as FC } from '../../stencil-public-runtime';
import type { JSXBase } from '../../stencil-public-runtime';
import { type Toast } from '../../schema';
type ToastItemProps = JSXBase.HTMLAttributes<HTMLDivElement> & {
    status: 'adding' | 'settled' | 'removing';
    toast: Toast;
    onClose: () => void;
};
declare const ToastItemFc: FC<ToastItemProps>;
export default ToastItemFc;
