import type { RectProps } from '../../jsx'; export interface ItemIconProps extends RectProps { indexes: number[]; size?: number; } export declare const ItemIcon: (props: ItemIconProps) => any; export declare const ItemIconCircle: (props: ItemIconProps & { colorBg?: string; }) => any;