7 lines
244 B
TypeScript
7 lines
244 B
TypeScript
|
|
import * as React from 'react';
|
||
|
|
import type { ListProps, ListRef } from './List';
|
||
|
|
declare const List: <Item = any>(props: React.PropsWithChildren<ListProps<Item>> & {
|
||
|
|
ref?: React.Ref<ListRef>;
|
||
|
|
}) => React.ReactElement;
|
||
|
|
export default List;
|