import { AkselColor } from "../../../types/index.js";
type BaseAlertContextProps = {
    size: "medium" | "small";
    status?: "announcement" | "success" | "warning" | "error";
    color: AkselColor | undefined;
    statusId: string;
};
declare const BaseAlertProvider: import("react").ForwardRefExoticComponent<BaseAlertContextProps & {
    children: React.ReactNode;
} & import("react").RefAttributes<unknown>>, useBaseAlert: <S extends boolean = true>(strict?: S) => S extends true ? BaseAlertContextProps : BaseAlertContextProps | undefined;
export { BaseAlertProvider, useBaseAlert };
export type { BaseAlertContextProps };
