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