import React from 'react'; import { BoxSystemProps } from './Box'; import { StyleConfig } from '../utils/styleConfig'; export declare type AlertParts = { alert: ''; }; declare type AlertDOMProps = React.ComponentPropsWithRef<'div'>; declare type AlertStyleConfigProp = { styleConfig?: StyleConfig; }; declare type AlertSystemProps = BoxSystemProps; export declare type AlertProps = AlertDOMProps & AlertStyleConfigProp & AlertSystemProps & { as?: React.ElementType; }; export declare const Alert: React.ForwardRefExoticComponent & React.RefAttributes>; export {};