import React from 'react'; import type { IconData } from '../types'; import type { IconPropsReact } from './types'; /** * Build an icon React component from its shared {@link IconData}. * * The path data lives in a single `data` module that both this component and * the `svgIcon()` string API import, so it is never bundled twice. The * rendered output and prop handling match the previously code-generated * components: props spread onto the `` element, `size` overrides * width/height, and `variant` selects filled/outlined. */ export declare const makeIcon: (data: IconData, name: string, displayName: string) => { (props: IconPropsReact): React.ReactSVGElement; displayName: string; };