/** * Created by kisnows on 2016/9/12. */ import * as React from 'react'; import { CellProps as BaseProps } from './PropsType'; import CellBody from './CellBody'; import CellHeader from './CellHeader'; import CellFooter from './CellFooter'; import CellTip from './CellTip'; export interface CellProps extends BaseProps { className?: string; href?: string; htmlFor?: string; onClick?: (e: object) => void; } export default class Cell extends React.Component { static Body: typeof CellBody; static Header: typeof CellHeader; static Footer: typeof CellFooter; static Tip: typeof CellTip; static defaultProps: { tip: boolean; warning: boolean; }; render(): JSX.Element; }