import { ThemeReactorStyleSheet } from '../common'; import * as React from 'react'; export const styleSheet: ThemeReactorStyleSheet; export interface ListItemSecondaryActionProps { /** * The content of the component, normally an `IconButton` or selection control. */ /** * Useful to extend the style applied to components. */ classes?: any, /** * @ignore */ className?: string, } export default function ListItemSecondaryAction(props: ListItemSecondaryActionProps): JSX.Element;