import React from 'react'; import { RendererProps } from 'amis-core'; export interface TableCellProps extends RendererProps { wrapperComponent?: React.ReactType; column: object; } export declare class TableCell extends React.Component { static defaultProps: { wrapperComponent: string; }; static propsList: Array; render(): JSX.Element; } export declare class TableCellRenderer extends TableCell { static propsList: string[]; } export declare class FieldRenderer extends TableCell { static defaultProps: { wrapperComponent: string; }; }