import { FC } from 'react';
type IconProps = {
    type: 'informational' | 'success' | 'warning' | 'danger';
};
declare const Icon: FC<IconProps>;
export default Icon;
