import { FunctionComponent } from 'react';
import { ElementProps } from '../core/ViewComponent';
import { ColumnProps } from './Column';
export interface TableColProps extends ElementProps {
    column: ColumnProps;
    last: boolean;
}
declare const TableCol: FunctionComponent<TableColProps>;
export default TableCol;
