import { type Key, type ReactElement, type ReactNode } from 'react'; export interface PartialNode { 'type'?: string; 'key'?: Key; 'value'?: T; 'element'?: ReactElement; 'wrapper'?: (element: ReactElement) => ReactElement; 'rendered'?: ReactNode; 'textValue'?: string; 'aria-label'?: string; 'index'?: number; 'renderer'?: (item: T) => ReactElement; 'hasChildNodes'?: boolean; 'childNodes'?: () => IterableIterator>; 'props'?: any; 'shouldInvalidate'?: (context: unknown) => boolean; } //# sourceMappingURL=PartialNode.d.ts.map