export interface TypographyClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the root element if `variant="displayLarge"`. */ displayLarge: string; /** Class name applied to the root element if `variant="displayMedium"`. */ displayMedium: string; /** Class name applied to the root element if `variant="displaySmall"`. */ displaySmall: string; /** Class name applied to the root element if `variant="headlineLarge"`. */ headlineLarge: string; /** Class name applied to the root element if `variant="headlineMedium"`. */ headlineMedium: string; /** Class name applied to the root element if `variant="headlineSmall"`. */ headlineSmall: string; /** Class name applied to the root element if `variant="titleLarge"`. */ titleLarge: string; /** Class name applied to the root element if `variant="titleMedium"`. */ titleMedium: string; /** Class name applied to the root element if `variant="titleSmall"`. */ titleSmall: string; /** Class name applied to the root element if `variant="bodyLarge"`. */ bodyLarge: string; /** Class name applied to the root element if `variant="bodyMedium"`. */ bodyMedium: string; /** Class name applied to the root element if `variant="bodySmall"`. */ bodySmall: string; /** Class name applied to the root element if `variant="labelLarge"`. */ labelLarge: string; /** Class name applied to the root element if `variant="labelMedium"`. */ labelMedium: string; /** Class name applied to the root element if `variant="labelSmall"`. */ labelSmall: string; /** Class name applied to the root element if `variant="labelXsmall"`. */ labelXsmall: string; /** Class name applied if text wrapping is disabled */ noWrap: string; /** Class name applied to the root element if `gutterBottom={true}`. */ gutterBottom: string; } export type TypographyClassKey = keyof TypographyClasses; export declare function getTypographyUtilityClass(slot: string): string; declare const typographyClasses: TypographyClasses; export default typographyClasses;