1 | import { type ConditionalValue, type HTMLChakraProps, type SlotRecipeProps, type UnstyledProp } from "../../styled-system";
|
2 | interface StatusProps {
|
3 | status: ConditionalValue<"info" | "warning" | "success" | "error" | "neutral">;
|
4 | }
|
5 | export declare const AlertStatusProvider: import("react").Provider<StatusProps>, useAlertStatusContext: () => StatusProps;
|
6 | declare const useAlertStyles: () => Record<string, import("../..").SystemStyleObject>;
|
7 | export { useAlertStyles };
|
8 | export interface AlertRootBaseProps extends SlotRecipeProps<"alert">, UnstyledProp {
|
9 | }
|
10 | export interface AlertRootProps extends HTMLChakraProps<"div", AlertRootBaseProps> {
|
11 | }
|
12 | export declare const AlertRoot: import("react").ForwardRefExoticComponent<AlertRootProps & import("react").RefAttributes<HTMLDivElement>>;
|
13 | export declare const AlertPropsProvider: React.Provider<AlertRootBaseProps>;
|
14 | export interface AlertTitleProps extends HTMLChakraProps<"div"> {
|
15 | }
|
16 | export declare const AlertTitle: import("react").ForwardRefExoticComponent<AlertTitleProps & import("react").RefAttributes<HTMLDivElement>>;
|
17 | export interface AlertDescriptionProps extends HTMLChakraProps<"div"> {
|
18 | }
|
19 | export declare const AlertDescription: import("react").ForwardRefExoticComponent<AlertDescriptionProps & import("react").RefAttributes<HTMLDivElement>>;
|
20 | export interface AlertContentProps extends HTMLChakraProps<"div"> {
|
21 | }
|
22 | export declare const AlertContent: import("react").ForwardRefExoticComponent<AlertContentProps & import("react").RefAttributes<HTMLDivElement>>;
|
23 | export interface AlertIndicatorProps extends HTMLChakraProps<"span"> {
|
24 | }
|
25 | export declare const AlertIndicator: import("react").ForwardRefExoticComponent<AlertIndicatorProps & import("react").RefAttributes<SVGSVGElement>>;
|