import type { FC, HTMLAttributes, Ref } from 'react';
export interface AlertContentProps extends HTMLAttributes {
ref?: Ref;
}
/**
* Container for Alert's main content (title, description, and bottom actions).
*
* Provides proper spacing and flex layout for child components.
*/
export declare const AlertContent: FC;