import * as React from 'react'; import { ListPropsType } from './PropsType'; import './style/index.less'; export interface ListProps extends ListPropsType { prefixCls?: string; className?: string; role?: string; style?: React.CSSProperties; hideLine?: boolean; row?: boolean; children?: React.ReactNode; type?: 'normal' | 'card'; } declare function List(props: ListProps): JSX.Element; declare namespace List { var defaultProps: { prefixCls: string; hideLine: boolean; }; } export default List;