UNPKG

549 BTypeScriptView Raw
1export interface ListItemSecondaryActionClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the root element when the parent `ListItem` has `disableGutters={true}`. */
5 disableGutters: string;
6}
7export type ListItemSecondaryActionClassKey = keyof ListItemSecondaryActionClasses;
8export declare function getListItemSecondaryActionClassesUtilityClass(slot: string): string;
9declare const listItemSecondaryActionClasses: ListItemSecondaryActionClasses;
10export default listItemSecondaryActionClasses;