import React, { FunctionComponent, ReactNode } from 'react'; import { TaroToastProps } from '@nutui/nutui-react-taro'; export declare const Toast: FunctionComponent & Omit, 'content'>> & { show: typeof show; hide: typeof hide; }; export interface ToastOptions extends Partial> { title?: string | undefined | ReactNode; } export declare function show(selector: string, options: ToastOptions): void; export declare function hide(selector: string): void;