///
import { LineProps } from "./line";
import { ListBase, ListBaseProps } from "./list-base";
export declare const TABLE_CELL_CLASS = "mdl-data-table__cell--non-numeric";
export interface TableProps> extends ListBaseProps {
columns: {
[field: string]: string;
};
data?: T[];
}
export declare class Table, AP> extends ListBase & AP> {
protected readonly data: T[];
protected renderTableHeader(): JSX.Element;
private renderTableBody();
render(): JSX.Element;
}
export declare function tableFor>(props: TableProps): JSX.Element;