export interface CardRootClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the root element if `orientation="vertical"`. */ orientationVertical: string; /** Class name applied to the root element if `orientation="horizontal"`. */ orientationHorizontal: string; /** Class name applied to the root element if `disabled={true}`. */ disabled: string; /** Class name applied to the root element if `selected={true}` */ selected: string; } export type CardRootClassKey = keyof CardRootClasses; export declare function getCardRootUtilityClass(slot: string): string; declare const cardRootClasses: CardRootClasses; export default cardRootClasses;