UNPKG

702 BTypeScriptView Raw
1export interface CardHeaderClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the avatar element. */
5 avatar: string;
6 /** Styles applied to the action element. */
7 action: string;
8 /** Styles applied to the content wrapper element. */
9 content: string;
10 /** Styles applied to the title Typography element. */
11 title: string;
12 /** Styles applied to the subheader Typography element. */
13 subheader: string;
14}
15export type CardHeaderClassKey = keyof CardHeaderClasses;
16export declare function getCardHeaderUtilityClass(slot: string): string;
17declare const cardHeaderClasses: CardHeaderClasses;
18export default cardHeaderClasses;