/// import * as React from 'react'; import { StyledHTMLElement } from 'styletron-react'; export interface IIconProps { align?: boolean; iconSize?: number | string; } export declare const IconStyle: ({align, iconSize}: IIconProps) => React.CSSProperties; export declare const Icon: StyledHTMLElement;