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) => JSX.Element; export default IconPlate;