import React, { type PropsWithChildren } from "react";
export type AlertStatus = "info" | "success" | "error";
export declare const useAlerts: () => {
    sendAlert: ({ message, status, duration, }: {
        message: React.ReactNode;
        status: AlertStatus;
        duration?: number;
    }) => string | undefined;
};
declare const Alerter: ({ children }: PropsWithChildren) => React.JSX.Element;
export default Alerter;
