import React from 'react'; type State = { label?: string; icon?: React.ReactElement; }; export type ActionToastDispatch = (s: State) => void; export declare const ActionToastDispatchContext: React.Context; /** 触发操作反馈 */ export declare const useActionToastDispatch: () => ActionToastDispatch; /** * 操作反馈提示(主要提示用户热键或鼠标操作的结果) */ export declare const ActionToastProvider: React.FC; /** 操作反馈提示的目标渲染位置 */ export declare const ActionToastOutlet: React.MemoExoticComponent<() => JSX.Element | null>; export {};