5 lines
194 B
TypeScript
5 lines
194 B
TypeScript
|
|
import * as React from 'react';
|
||
|
|
import type { StepProps } from '.';
|
||
|
|
declare function useLegacyItems(items?: StepProps[], children?: React.ReactNode): StepProps[];
|
||
|
|
export default useLegacyItems;
|