import type { FC, HTMLAttributes } from 'react';
import type { ToastProps, ToastSize, ToastWordBreak } from '@nutui/nutui-react-taro';
import { Toast as NutToast, ToastOptions } from './nut-toast.taro';
declare const Toast: FC<Partial<ToastProps> & Omit<HTMLAttributes<HTMLDivElement>, 'content'>> & {
    show: typeof NutToast.show;
    hide: typeof NutToast.hide;
    displayName: typeof NutToast.displayName;
};
export { Toast, ToastProps, ToastSize, ToastWordBreak };
export type { ToastOptions };
