import React from 'react'; import { Theme } from '../types'; export interface ItemIconProps { /** * 子元素 * * @type {React.ReactNode} * @memberof ItemIconProps */ children: any; /** * 样式 * * @type {React.CSSProperties} * @memberof ItemIconProps */ style: React.CSSProperties; /** * 主题样式 * * @type {Theme} * @memberof ItemIconProps */ theme: Theme; } export interface ItemIconInterface extends React.SFC { sinouiName?: string; } declare const _default: React.ComponentClass & { theme?: {}; }, any>; export default _default;