import { JSX } from 'react'; import { PolymorphicComponentPropWithRef } from '../react-types'; export type AlertProps = PolymorphicComponentPropWithRef; type AlertComponent = (props: AlertProps) => JSX.Element; export declare const Alert: AlertComponent; export {};