import type { FC, DetailedHTMLProps, HTMLAttributes } from 'react';
import type { AlertStatus } from '../../components/alert/pharos-alert';
export interface PharosAlertProps extends DetailedHTMLProps, HTMLElement> {
/**
* The status to reflect to the user
*/
status: AlertStatus;
/**
* Indicates if the alert is closable
*/
closable?: boolean;
/**
* Fires when the alert has closed
*/
'onPharos-Alert-Closed'?: (event: CustomEvent) => void;
}
export declare const PharosAlert: FC;
//# sourceMappingURL=pharos-alert.d.ts.map