import React from 'react'; import './index.less'; export interface PisellToastProps { /** 提示内容 */ content: React.ReactNode; /** 自动关闭的延时,单位秒。设为 0 时不自动关闭 */ duration?: number; /** 是否展示action */ showAction?: boolean; /** action文案 */ actionText?: string; /** 关闭时触发的回调函数 */ onClose?: () => void; } declare const PisellToast: (props: PisellToastProps) => void; export { useToast } from './squareToast'; export default PisellToast;