import { ReactNode } from 'react'; export interface AlertProps { children: ReactNode; classBlock?: string; classModifiers?: string | string[] | null; className?: string; /** Alert heading */ heading?: string; /** ARIA role or the alert */ role?: string; } export declare const DEFAULT_CLASS = "hods-alert"; /** A block of text that is inset. * ## When to use this component Use alerts to inform users that something important has happened, notify them of a success/failure or to take action. Only use this component when you have identified that users need to be made aware of certain content. */ export declare const Alert: ({ children, classBlock, classModifiers, className, role, heading, ...attrs }: AlertProps) => import("react/jsx-runtime").JSX.Element;