import { DOMTemplateLiterals, FC } from '@dineug/r-html';
export type ToastProps = {
title?: DOMTemplateLiterals | string;
description?: DOMTemplateLiterals | string;
action?: DOMTemplateLiterals | string;
};
declare const Toast: FC<ToastProps>;
export default Toast;