Version: 5.0.0-rc.05.0.0-rc.15.0.05.0.15.0.25.0.35.0.45.0.55.0.65.1.05.1.15.2.05.2.15.2.25.2.35.2.45.2.55.2.65.2.75.2.85.3.05.3.15.4.05.4.15.4.25.4.35.4.45.5.05.5.15.5.25.5.35.6.05.6.15.6.25.6.35.6.45.7.05.8.05.8.15.8.25.8.35.8.45.8.55.8.65.8.75.9.05.9.15.9.25.9.35.10.05.10.15.10.25.10.35.10.45.10.55.10.65.10.75.10.85.10.95.10.105.10.115.10.125.10.135.10.145.10.155.10.165.10.175.11.05.11.15.11.25.11.35.11.45.11.55.11.65.11.75.11.85.11.95.11.105.11.115.11.125.11.135.11.145.11.155.11.165.12.05.12.15.12.25.12.35.13.05.13.15.13.25.13.35.13.45.13.55.13.65.13.75.14.05.14.15.14.25.14.35.14.45.14.55.14.65.14.75.14.85.14.95.14.105.14.115.14.125.14.135.14.145.14.155.14.165.14.175.14.185.14.195.14.205.15.05.15.15.15.25.15.35.15.45.15.55.15.65.15.75.15.85.15.95.15.105.15.115.15.125.15.135.15.145.15.155.15.165.15.175.15.185.15.195.15.205.15.215.16.05.16.15.16.25.16.35.16.45.16.55.16.65.16.75.16.85.16.95.16.115.16.125.16.136.0.0-alpha.06.0.0-alpha.16.0.0-alpha.26.0.0-alpha.36.0.0-alpha.46.0.0-alpha.56.0.0-alpha.66.0.0-alpha.76.0.0-alpha.86.0.0-alpha.96.0.0-alpha.106.0.0-alpha.116.0.0-alpha.126.0.0-alpha.136.0.0-alpha.146.0.0-beta.06.0.0-beta.16.0.0-beta.26.0.0-beta.36.0.0-beta.46.0.0-beta.56.0.0-beta.66.0.0-beta.3-dev.20240725-084532-7340f56bef6.0.0-beta.4-dev.20240802-144226-85a3b55d226.0.0-beta.4-dev.20240805-092432-9f940a61d66.0.0-beta.5-dev.20240809-114550-93cb3d65e76.0.0-dev.20240529-082515-213b5e33ab6.0.0-dev.240424162023-9968b4889d6.0.0-rc.06.0.06.0.16.0.26.1.06.1.1-dev.20240919-130050-82a64487686.1.16.1.26.1.36.1.46.1.56.1.66.1.76.1.86.1.96.1.106.2.06.2.16.3.0
export interface TypographyClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the root element if `variant="body2"`. */
body2: string;
/** Styles applied to the root element if `variant="body1"`. */
body1: string;
/** Styles applied to the root element if `variant="caption"`. */
caption: string;
/** Styles applied to the root element if `variant="button"`. */
button: string;
/** Styles applied to the root element if `variant="h1"`. */
h1: string;
/** Styles applied to the root element if `variant="h2"`. */
h2: string;
/** Styles applied to the root element if `variant="h3"`. */
h3: string;
/** Styles applied to the root element if `variant="h4"`. */
h4: string;
/** Styles applied to the root element if `variant="h5"`. */
h5: string;
/** Styles applied to the root element if `variant="h6"`. */
h6: string;
/** Styles applied to the root element if `variant="subtitle1"`. */
subtitle1: string;
/** Styles applied to the root element if `variant="subtitle2"`. */
subtitle2: string;
/** Styles applied to the root element if `variant="overline"`. */
overline: string;
/** Styles applied to the root element if `variant="inherit"`. */
inherit: string;
/** Styles applied to the root element if `align="left"`. */
alignLeft: string;
/** Styles applied to the root element if `align="center"`. */
alignCenter: string;
/** Styles applied to the root element if `align="right"`. */
alignRight: string;
/** Styles applied to the root element if `align="justify"`. */
alignJustify: string;
/** Styles applied to the root element if `nowrap={true}`. */
noWrap: string;
/** Styles applied to the root element if `gutterBottom={true}`. */
gutterBottom: string;
/**
* Styles applied to the root element if `paragraph={true}`.
* @deprecated
*/
paragraph: string;
}
export type TypographyClassKey = keyof TypographyClasses;
export declare function getTypographyUtilityClass(slot: string): string;
declare const typographyClasses: TypographyClasses;
export default typographyClasses;