import React from 'react';
export type IconPlateVariant = 'default' | 'info' | 'error' | 'success';
type Props = {
    children: JSX.Element;
    size?: number;
    variant?: IconPlateVariant;
    className?: string;
};
declare const IconPlate: ({ children, variant, size, className, }: Props) => React.JSX.Element;
export default IconPlate;
