import * as React from 'react'; import { OverrideProps } from '@mui/types'; import { CreateSlotsAndSlotProps, SlotCommonProps, SlotProps } from '../types/slot'; export type ListSubheaderSlot = 'root'; export interface ListSubheaderSlots { /** * The component that renders the root. * @default 'div' */ root?: React.ElementType; } export type ListSubheaderSlotsAndSlotProps = CreateSlotsAndSlotProps; }>; export interface ListSubheaderVariantOverrides { } export interface ListSubheaderColorOverrides { } export interface ListSubheaderTypeMap

{ props: P & { /** * If `true`, the component has sticky position (with top = 0). * @default false */ sticky?: boolean; } & ListSubheaderSlotsAndSlotProps; defaultComponent: D; } export type ListSubheaderProps = OverrideProps, D>; export interface ListSubheaderOwnerState extends ListSubheaderProps { }