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.

13 lines
536 B
TypeScript

export interface SnackbarContentClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the message wrapper element. */
message: string;
/** Styles applied to the action wrapper element if `action` is provided. */
action: string;
}
export type SnackbarContentClassKey = keyof SnackbarContentClasses;
export declare function getSnackbarContentUtilityClass(slot: string): string;
declare const snackbarContentClasses: SnackbarContentClasses;
export default snackbarContentClasses;