import React from 'react';
interface Props {
    prop: string;
    label?: string;
    width?: number;
}
export declare type TableColumnProps = Props;
declare const TableColumn: React.FC<React.PropsWithChildren<TableColumnProps>>;
export default TableColumn;
