///
import type { AlertStatus } from './defs';
type ContextProps = {
status?: AlertStatus;
};
export declare function useAlertProps(): ContextProps;
export declare const Alert: ((props: import("../../utils").PolymorphicComponentProps, "as">>) => import("react").ReactElement, "as">, string | import("react").JSXElementConstructor>) & Omit, "as">>, never> & import("react").ForwardRefExoticComponent<{
[index: `data-${string}`]: unknown;
as?: any;
css?: import("@fuel-ui/css").ThemeUtilsCSS | undefined;
className?: string | undefined;
children?: import("react").ReactNode;
} & import("react").HTMLAttributes & {
direction?: "column" | "row" | undefined;
status?: AlertStatus | undefined;
hideIcon?: boolean | undefined;
} & import("react").RefAttributes> & import("./defs").AlertNS;
export {};