import { Status } from "../../../types/variables.mjs"; import { FC } from "react"; //#region src/components/feedback/toast/toast.d.ts type ToastProps = { id: string; tone: Status; message: string; }; declare const Toast: FC; //#endregion export { Toast };