/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import React from 'react'; export declare const MAX_WIDTH = 350; type TypeProps = { className?: string; headerWrapperClassName?: string; maxWidth?: number; computedWidth: number; }; type TypeState = { visible: boolean; props?: TypeProps; }; export default class DragCell extends React.Component { private left?; private right?; private top?; private height?; private width?; constructor(props: TypeProps); getProps: () => TypeProps | (Readonly & Readonly<{ children?: React.ReactNode; }>); setProps: (props: TypeProps) => void; render(): JSX.Element | null; onCellMount: (props: any, cell: any) => void; onCellUnmount: () => void; setDragging: (visible: any, callback: any) => void; setTop: (top: any) => void; setHeight: (height: any) => void; setWidth: (width: any) => void; setLeft: (left: any) => void; setRight: (right: any) => void; } export {};