///
import { CSS } from "../config";
import { TextProps } from "../Text";
interface Props extends TextProps {
children?: React.ReactNode;
css?: CSS;
as?: keyof JSX.IntrinsicElements;
}
declare type NativeAttrs = Omit, keyof Props>;
export declare type AlertContentProps = Props & NativeAttrs;
export declare const AlertContentComponent: React.FC;
declare const AlertContent: import("react").FC;
export default AlertContent;