import React from 'react'; import { EventHandlerProps } from '../../../types'; import { GlyphName, GlyphSize } from './types'; export interface GlyphProps extends EventHandlerProps { name: GlyphName; color?: string; size?: GlyphSize; className?: string; ariaLabel?: string; style?: { [key: string]: string; }; } declare const Glyph: ({ name, size, color, className, ariaLabel, style, onClick, }: GlyphProps) => React.JSX.Element; export default Glyph; //# sourceMappingURL=Glyph.d.ts.map