/// import CompCommon from '../../common/type'; export interface CellProps extends CompCommon { title?: number | string; value?: number | string; label?: number | string; link?: boolean; border?: boolean; center?: boolean; icon?: string; arrowDirection?: 'left' | 'up' | 'down' | 'right'; to?: string; pageType?: 'switchTab' | 'reLaunch' | 'redirectTo' | 'navigateTo'; leftContent?: React.ReactNode; rightContent?: React.ReactNode; onClick?: Function; } export interface CellGroupProps extends CompCommon { title?: number | string; border?: boolean; inset: boolean; }