import { ComponentType } from '../../jsx'; import type { BaseItemProps } from './types'; export interface SimpleItemProps extends BaseItemProps { width?: number; height?: number; gap?: number; showIcon?: boolean; iconSize?: number; iconType?: 'default' | 'circle'; usePaletteColor?: boolean; } export declare const SimpleItem: ComponentType;