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