import React from 'react'; import type { TableCellProps } from '../types'; export declare class TableCell extends React.Component { static defaultProps: { wrapperComponent: string; }; static propsList: Array; parseBackgroundScale: (column: TableCellProps["column"], data: Record) => string; render(): JSX.Element; } export declare class TableCellRenderer extends TableCell { static propsList: string[]; } export declare class FieldRenderer extends TableCell { static defaultProps: { wrapperComponent: string; }; }