import React from 'react'; import { DialogProps } from '../Dialog'; interface AlertProps extends Omit { variant?: 'default' | 'warning'; } declare const Alert: ({ children, className, variant, heading, ...other }: AlertProps) => React.JSX.Element; declare const AlertContent: { ({ children, className, align, ...other }: import("../Dialog").DialogContentProps): React.JSX.Element; displayName: string; }; declare const AlertActions: { ({ children, className, align, ...other }: import("../Dialog").DialogFooterProps): React.JSX.Element; displayName: string; }; export default Alert; export { Alert, AlertContent, AlertActions };