import React from 'react'; import { TdListProps } from './type'; import type { StyledProps } from '../common'; export interface ListProps extends TdListProps, StyledProps { children?: React.ReactNode; } declare const List: React.FC; export default List;