import * as React from 'react';
import type { IconGraphicName } from './icons-graphic/IconGraphic';

/**
 * Figma family "Icons / Graphic" — 473 variants (Icon Name × Icon Shape × Icon Weight).
 * Thin alias over IconGraphic; the variant axes are flattened into `name`
 * (see IconGraphicName in ./icons-graphic/IconGraphic.d.ts).
 */
export interface IconsGraphicProps extends React.SVGProps<SVGSVGElement> {
  /** Flattened icon name, e.g. "IconsGraphicIconNameAirConditioningIcon" */
  name: IconGraphicName;
  /** Square size in px */
  size?: number;
}
export declare function IconsGraphic(props: IconsGraphicProps): React.JSX.Element;
export default IconsGraphic;
