///
import type { CustomizeOptions } from '../types';
interface Props {
originNode: Array;
node: Array;
depth: number;
index: number;
deleteHandle?: (_: string | number, currentPath: string[]) => void;
customOptions?: CustomizeOptions;
startIndex: number;
parent?: Record | Array;
parentPath: string[];
}
export default function LargeArrayNode({ originNode, node, depth, index, deleteHandle: _deleteSelf, customOptions, startIndex, parent, parentPath }: Props): JSX.Element;
export {};