You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
549 B
TypeScript

export interface ListItemSecondaryActionClasses {
/** 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 ListItemSecondaryActionClasses;
export declare function getListItemSecondaryActionClassesUtilityClass(slot: string): string;
declare const listItemSecondaryActionClasses: ListItemSecondaryActionClasses;
export default listItemSecondaryActionClasses;