import { default as React } from 'react';
import { TextProps } from '../Text';
export type AlertTitleProps = Pick<TextProps, 'children' | 'dataTestId' | 'variant'> & {
    hasCloseButton?: boolean;
};
/**
 * @name Alert.Title
 */
export declare const Title: React.FC<AlertTitleProps>;
