/// import React, { ReactNode } from 'react'; export interface ListProps { /** web only */ prefixCls?: string; style?: React.CSSProperties; /** web only */ className?: string; children?: any; renderHeader?: Function; renderFooter?: Function; /** rn only */ styles?: any; } export interface ListItemProps { last?: boolean; /** web only */ prefixCls?: string; style?: any; /** web only */ className?: string; thumb?: ReactNode | null; extra?: React.ReactNode; arrow?: 'horizontal' | 'down' | 'up' | 'empty' | ''; align?: string; onClick?: (e?: any) => void; error?: boolean; multipleLine?: boolean; children?: any; wrap?: boolean; line?: number; /** rn only */ styles?: any; onPressIn?: (e?: any) => void; onPressOut?: (e?: any) => void; } export interface BriefProps { style?: React.CSSProperties; children?: any; /** rn only */ styles?: any; }