nodeUtil.d.ts 329 B

123
  1. import * as React from 'react';
  2. import type { Components, ItemType } from '../interface';
  3. export declare function parseItems(children: React.ReactNode | undefined, items: ItemType[] | undefined, keyPath: string[], components: Components, prefixCls?: string): React.ReactElement<any, string | React.JSXElementConstructor<any>>[];