import React from "react"; import { AlertVariant } from "./Alert"; import "./alert-animations.css"; type AlertVal = { content: string; variant?: AlertVariant; }; type AlertContextValue = { alerts: AlertVal[]; newAlert: (val: AlertVal) => void; }; type AlertProviderProps = { children?: React.ReactNode; }; export default function AlertProvider({ children }: AlertProviderProps): React.JSX.Element; export declare function useAlert(): AlertContextValue; export {};