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