import { Theme } from '../types'; export interface StyleItemProps { /** * 紧缩型 * * @type {boolean} * @memberof StyleItemProps */ dense?: boolean; /** * 禁用状态 * * @type {boolean} * @memberof StyleItemProps */ disabled?: boolean; /** * 是否带头像 * * @type {boolean} * @memberof StyleItemProps */ avatar?: boolean; /** * 是否有点击效果 * * @type {boolean} * @memberof StyleItemProps */ withoutRipple?: boolean; /** * 主题样式 * * @type {Theme} * @memberof StyleItemProps */ theme: Theme; } export declare const StyleItem: import("../types").SinouiStyledComponentClass & import("react").LiHTMLAttributes & StyleItemProps, Theme, import("react").ClassAttributes & import("react").LiHTMLAttributes & StyleItemProps>; export declare const StyleBaseButton: import("react").ComponentType;