import { FC } from 'react';
import { HTMLTribeProps } from '../types/index.js';
export declare type AlertStatus = 'error' | 'warning' | 'success' | 'info';
export declare type AlertProps = HTMLTribeProps<'div'> & {
status?: AlertStatus;
title?: string;
withClose?: boolean;
};
export declare const Alert: FC;