import React from 'react'; import { SyncFieldElement } from '../../types'; import ObjectPathKey from '@bast1oncz/objects/ObjectPathKey'; export interface TempItemProps { label?: string; sourceKey: ObjectPathKey; updateKey: ObjectPathKey; deleteKey: ObjectPathKey; itemIdSourceKey: ObjectPathKey; disabled: boolean; isSyncing: boolean; indexable?: boolean; children: SyncFieldElement | SyncFieldElement[]; tempItemCreating: boolean; setTempItemCreating: (tempItemCreating: boolean) => void; } declare const _default: React.MemoExoticComponent<(props: TempItemProps) => JSX.Element>; export default _default;