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