import type { Action } from "src/types"; type NotificationOptions = { seconds?: number; persistent?: boolean; }; export declare const notify: (title: string | React.JSX.Element, options?: NotificationOptions) => any, notifyWarning: (title: string | React.JSX.Element, options?: NotificationOptions) => any, notifyError: (title: string | React.JSX.Element, options?: NotificationOptions) => any, showCaptcha: (payload: { id: string; name: string; }) => Action, hideCaptcha: (payload: string) => Action; export * from "./Account/actions"; export * from "./Modal/actions";