import * as React from 'react'; import { StandardProps } from '..'; export interface ListSubheaderProps extends StandardProps, ListSubheaderClassKey> { color?: 'default' | 'primary' | 'inherit'; component?: React.ElementType>; disableGutters?: boolean; disableSticky?: boolean; inset?: boolean; } export type ListSubheaderClassKey = | 'root' | 'colorPrimary' | 'colorInherit' | 'inset' | 'sticky' | 'gutters'; declare const ListSubheader: React.ComponentType; export default ListSubheader;