import { Status } from "../../../types/variables.mjs"; import { Dispatch, SetStateAction } from "react"; //#region src/components/feedback/toast/context.d.ts type ToastType = { id: string; tone: Status; message: string; }; declare const SetToastContext: import("react").Context> | null>, useSetToast: () => Dispatch>; declare const useToast: () => { onOpen: (tone: Status, message: string) => void; onClose: (id: string) => void; onCloseAll: () => void; }; //#endregion export { SetToastContext, ToastType, useSetToast, useToast };