import { FC, PropsWithChildren } from "react"; type ToastShape = { text: string; type: "confirmation" | "error"; id: string; }; export declare const useToast: () => (text: string, type: ToastShape["type"]) => void; export declare const WithToasts: FC; export {}; //# sourceMappingURL=index.d.ts.map