import React from "react"; type ToastType = "success" | "error" | "warning" | "info"; export type ToastPosition = "top-left" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right"; export declare function useToast(): { showToast: (message: string, type?: ToastType, position?: ToastPosition, duration?: number) => void; }; export declare const InjectToast: React.FC; export {}; //# sourceMappingURL=Toast.d.ts.map