///
import { SpectrumColumnProps } from '@react-types/table';
import { CSS } from '../../theme/stitches.config';
export declare type TableColumnProps = Omit, 'showDivider'> & {
css?: CSS;
};
declare const TableColumn: (props: TableColumnProps) => JSX.Element;
export default TableColumn;