Files
ETB/ETB-FrontEnd/node_modules/@mui/lab/TimelineDot/timelineDotClasses.d.ts
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

25 lines
1.2 KiB
TypeScript

export interface TimelineDotClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the root element if `variant="filled"`. */
filled: string;
/** Styles applied to the root element if `variant="outlined"`. */
outlined: string;
/** Styles applied to the root element if `color="grey"` and `variant="filled"`. */
filledGrey: string;
/** Styles applied to the root element if `color="grey"` and `variant="outlined"`. */
outlinedGrey: string;
/** Styles applied to the root element if `color="primary"` and `variant="filled"`. */
filledPrimary: string;
/** Styles applied to the root element if `color="primary"` and `variant="outlined"`. */
outlinedPrimary: string;
/** Styles applied to the root element if `color="secondary"` and `variant="filled"`. */
filledSecondary: string;
/** Styles applied to the root element if `color="secondary"` and `variant="outlined"`. */
outlinedSecondary: string;
}
export type TimelineDotClassKey = keyof TimelineDotClasses;
export declare function getTimelineDotUtilityClass(slot: string): string;
declare const timelineDotClasses: TimelineDotClasses;
export default timelineDotClasses;