import { HTMLHeroUIProps } from '@heroui/system';
import { SpectrumColumnProps } from '@react-types/table';
type TableColumnProps = Omit, "showDivider"> & Omit, keyof SpectrumColumnProps>;
declare const TableColumn: (props: TableColumnProps) => JSX.Element;
export { type TableColumnProps, TableColumn as default };