import React from 'react';
export interface CellWithColumnWidthProps {
    width?: string | number;
    columnIndex?: number;
}
export default function withColumnWidth<T extends object>(Cell: React.ComponentType<T>): (props: T & CellWithColumnWidthProps) => React.JSX.Element;
