9 lines
No EOL
362 B
TypeScript
9 lines
No EOL
362 B
TypeScript
export interface TimeClockClasses {
|
|
/** Styles applied to the root element. */
|
|
root: string;
|
|
/** Styles applied to the arrowSwitcher element. */
|
|
arrowSwitcher: string;
|
|
}
|
|
export type TimeClockClassKey = keyof TimeClockClasses;
|
|
export declare function getTimeClockUtilityClass(slot: string): string;
|
|
export declare const timeClockClasses: TimeClockClasses; |