import React from 'react'; import IconSizeType from './types/icon-sizes'; import { IconType } from './types/icons'; export interface IconProps { type: IconType; className?: string; onClick?: (event: React.MouseEvent) => void; onDark?: boolean; size?: IconSizeType; noKeyboardNavigation?: boolean; } export declare const Icon: React.SFC>; export default Icon;