import React, { type ReactNode } from 'react';
import { type BoxProps } from '../Box/Box';
interface FunAlertProps {
    icon?: ReactNode;
    description: ReactNode;
    type?: 'info' | 'error';
    verticalAlignment?: 'top' | 'center';
    paddingX?: BoxProps['paddingX'];
}
export declare function FunAlert({ icon, description, type, verticalAlignment, paddingX, }: FunAlertProps): React.JSX.Element;
export {};
