import React, { ReactElement } from 'react'; import { PopoutProps } from '../../components/Popout'; export declare type AlertProps = PopoutProps & { type: 'horizontal' | 'vertical'; title: string; description?: string; actions: Array; }; export declare const Alert: React.FC;