import { DateCell } from '../models';
export default function withKeyProps(keyPrefix: string): <T extends DateCell>(cell: T) => T & {
    key: string;
};
