import React from 'react'; import { CalculatedColumn } from '../types'; export interface ResizableHeaderCellProps { children: React.ReactElement>; column: CalculatedColumn; onResize: (column: CalculatedColumn, width: number) => void; } export default function ResizableHeaderCell({ children, column, onResize }: ResizableHeaderCellProps): React.ReactElement, HTMLDivElement>, string | ((props: any) => React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)>;