import React, { Ref } from 'react'; import { ItemSubEntity } from '../types'; import { SyncFieldElement } from '../../types'; import ObjectPathKey from '@bast1oncz/objects/ObjectPathKey'; export interface SortableBodyProps { tableBodyRef: Ref; fieldSourceKey: ObjectPathKey; items: ItemSubEntity[]; syncingItemId?: string; disabled: boolean; removeItem: (item: ItemSubEntity) => void; indexable?: boolean; children: SyncFieldElement | SyncFieldElement[]; } declare const _default: React.MemoExoticComponent>; export default _default;