1 | import React from 'react';
|
2 | import type { CircularCache, CommonInternalProps } from './types.js';
|
3 | interface Props extends CommonInternalProps {
|
4 | data: unknown;
|
5 | nodeType: string;
|
6 | from: number;
|
7 | to: number;
|
8 | renderChildNodes: (props: Props, from: number, to: number) => React.ReactNode;
|
9 | circularCache: CircularCache;
|
10 | level: number;
|
11 | }
|
12 | export default function ItemRange(props: Props): React.JSX.Element;
|
13 | export {};
|