import type * as React from 'react' export type IconAttrs = Record export interface IconNode { tag: string attrs: IconAttrs children?: IconNode[] } export interface MeteorIconProps extends Omit, 'color'> { size?: string | number strokeWidth?: string | number color?: string } export type MeteorIconComponent = React.ForwardRefExoticComponent< MeteorIconProps & React.RefAttributes > export declare function createIcon(iconName: string, iconNode: IconNode[]): MeteorIconComponent