import { default as React, JSX } from 'react';
export type SiteAlertProps = {
    variant: 'info' | 'emergency';
    children: string | React.ReactNode | React.ReactNode[];
    heading?: string;
    showIcon?: boolean;
    slim?: boolean;
    className?: string;
} & JSX.IntrinsicElements['section'];
export declare const SiteAlert: ({ variant, children, heading, showIcon, slim, className, ...sectionProps }: SiteAlertProps) => JSX.Element;
export default SiteAlert;
