import * as React from 'react'; import { SinouiSFC } from '../types'; export interface ItemTextProps { /** * 子元素 * * @type {React.ReactNode} * @memberof ItemTextProps */ children: React.ReactNode; /** * 第二行元素 * * @type {(string | React.ReactElement)} * @memberof ItemTextProps */ subheaderText?: string | React.ReactElement; /** * 第三行元素 * * @type {(string | React.ReactElement)} * @memberof ItemTextProps */ secondaryText?: string | React.ReactElement; /** * 紧缩型 * * @type {boolean} * @memberof ItemTextProps */ dense?: boolean; } /** * @ReactComponent * * 列表项文本 * @param {ItemTextProps} props * @returns */ declare const ItemText: SinouiSFC; export default ItemText;