import { ComponentPropsWithRef, HTMLAttributes } from 'react';
import { IconProps } from '../Icon/types';
export type VariantIconProps = ComponentPropsWithRef<'div'> & HTMLAttributes<HTMLDivElement> & VariantIconOptions;
interface VariantIconOptions {
    size?: IconProps['size'];
    variant?: 'ai' | 'danger' | 'info' | 'success' | 'warning';
}
export {};
