///
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 AlertTitleProps = Props & NativeAttrs;
export declare const TitleAlertComponent: React.FC;
declare const TitleAlert: import("react").FC;
export default TitleAlert;