import React from 'react'; export interface ListProps { children?: React.ReactNode; subheader?: React.ReactElement; dense?: boolean; disablePadding?: boolean; role?: string; innerRef?: (node: any) => void; onBlur?: (event: React.FocusEvent) => void; color?: string; textStyle?: React.CSSProperties; } declare function List(props: ListProps): JSX.Element; export default List;