import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; export interface BoxBodyInterfaceProps extends PropsInterface { panel?: boolean; panelVertical?: boolean; minHeight?: number; show?: boolean; droppable?: string; onDragOver?: any; onDrop?: any; } export declare class BoxBody extends PureComponent { static defaultProps: { show: boolean; }; constructor(props: any); render(): JSX.Element | null; }