export interface CardMediaClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the media element. */ media: string; /** Class name applied to the media element if `slotProps.media.component="video, audio, picture, iframe, or img"`. */ mediaComponent: string; /** Class name applied to the media element if `slotProps.media.component="picture or img"`. */ imgComponent: string; /** Class name applied to the badge element. */ badge: string; /** Class name applied to the root element when card is disabled. */ disabled: string; } export type CardMediaClassKey = keyof CardMediaClasses; export declare function getCardMediaUtilityClass(slot: string): string; declare const cardMediaClasses: CardMediaClasses; export default cardMediaClasses;