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 & { status: 'adding' | 'settled' | 'removing'; toast: Toast; onClose: () => void; }; declare const ToastItemFc: FC; export default ToastItemFc;