import { ThemeReactorStyleSheet } from '../common'; import * as React from 'react'; export const styleSheet: ThemeReactorStyleSheet; export interface ListProps { /** * The content of the component. */ /** * Useful to extend the style applied to components. */ classes?: any, /** * @ignore */ className?: string, /** * The component used for the root node. * Either a string to use a DOM element or a component. */ component?: string | Function, /** * If `true`, compact vertical padding designed for keyboard and mouse input will be used for * the list and list items. The property is available to descendant components as the * `dense` context. */ dense?: boolean, /** * If `true`, vertical padding will be removed from the list. */ disablePadding?: boolean, /** * Use that property to pass a ref callback to the root component. */ rootRef?: Function, /** * The content of the component, normally `ListItem`. */ subheader?: number | string | React.ReactElement | Array, } export default class List extends React.Component {}