6 lines
246 B
TypeScript
6 lines
246 B
TypeScript
import * as React from 'react';
|
|
import type { Tab } from 'rc-tabs/lib/interface';
|
|
import type { TabsProps } from '..';
|
|
declare function useLegacyItems(items?: TabsProps['items'], children?: React.ReactNode): Tab[];
|
|
export default useLegacyItems;
|