import React from 'react'; import iconsNameMap from './iconsNameMap'; export declare type Variant = 'thin' | 'heavy' | 'solid'; declare type IconsV2Props = { name: keyof typeof iconsNameMap; variant?: Variant; size?: number; color?: string; className?: string; margin?: string; } & React.HTMLAttributes; /** * @property margin - DEPRECATED. */ declare function IconsV2({ name, variant, size, color, className, margin, ...restProps }: IconsV2Props): JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;