import React from "react";
import type { AkselColor } from "../../../types/index.js";
import type { BaseAlertContextProps } from "../root/BaseAlertRoot.context.js";
declare function baseAlertStatusToDataColor(status: BaseAlertContextProps["status"]): AkselColor;
declare function BaseAlertStatusIcon({ status, fill, }: {
    status: BaseAlertContextProps["status"];
    fill?: boolean;
}): React.JSX.Element | null;
export { BaseAlertStatusIcon, baseAlertStatusToDataColor };
