import * as React from 'react'; import { StandardProps } from '..'; export interface ListProps extends StandardProps, ListClassKey> { component?: React.ReactType; dense?: boolean; disablePadding?: boolean; subheader?: React.ReactElement; } export type ListClassKey = 'root' | 'padding' | 'dense' | 'subheader'; declare const List: React.ComponentType; export default List;