import { InternalStandardProps as StandardProps } from '..'; export interface ListItemSecondaryActionProps extends StandardProps> { /** * The content of the component, normally an `IconButton` or selection control. */ children?: React.ReactNode; /** * Override or extend the styles applied to the component. */ classes?: { /** Styles applied to the root element. */ root?: string; /** Styles applied to the root element when the parent `ListItem` has `disableGutters={true}`. */ disableGutters?: string; }; } export type ListItemSecondaryActionClassKey = keyof NonNullable< ListItemSecondaryActionProps['classes'] >; /** * Must be used as the last child of ListItem to function properly. * Demos: * * - [Lists](https://material-ui.com/components/lists/) * * API: * * - [ListItemSecondaryAction API](https://material-ui.com/api/list-item-secondary-action/) */ export default function ListItemSecondaryAction(props: ListItemSecondaryActionProps): JSX.Element;