import React, { FunctionComponent } from 'react'; import { DraggableProvided } from 'react-beautiful-dnd'; export interface PropsType { align: 'start' | 'center' | 'end'; width?: string; dragHandler?: boolean; provided?: DraggableProvided['dragHandleProps']; onFocus?(): void; onBlur?(): void; 'data-testid'?: string; } declare const Cell: FunctionComponent>; export default Cell;