import { FC } from 'react';
type Variants = "info" | "error" | "success" | "warning";
type Props = {
    variant: Variants;
};
export declare const MessageIcon: FC<Props>;
export {};
