import React from 'react'; import type { IGlyph } from './type'; export interface IBaseGlyphProps { /** Optional passed classname. */ className?: string; /** Optional control for fill rules */ fill?: string; /** Icon name or legacy svg data definition*/ icon: IGlyph; /** Option passed styles */ style?: React.CSSProperties; /** Mandatory size */ size?: { height?: number; width?: number; }; } export declare const BaseGlyph: React.FC;