import type { ValuesOf } from "../../util/typings.js"; /** * The appearance variations for the card component * @public */ export declare const CardAppearances: { readonly filled: "filled"; readonly filledAlternative: "filled-alternative"; readonly outline: "outline"; readonly subtle: "subtle"; }; /** * Back-compat runtime alias for {@link CardAppearances}. * @public */ export declare const CardAppearance: { readonly filled: "filled"; readonly filledAlternative: "filled-alternative"; readonly outline: "outline"; readonly subtle: "subtle"; }; /** * The types for card appearance * @public */ export type CardAppearance = ValuesOf; /** * The orientation variations for the card component * @public */ export declare const CardOrientations: { readonly horizontal: "horizontal"; readonly vertical: "vertical"; }; /** * Back-compat runtime alias for {@link CardOrientations}. * @public */ export declare const CardOrientation: { readonly horizontal: "horizontal"; readonly vertical: "vertical"; }; /** * The types for card orientations * @public */ export type CardOrientation = ValuesOf; /** * The focus mode variations for the card component * @public */ export declare const CardFocusModes: { readonly off: "off"; readonly noTab: "no-tab"; readonly tabExit: "tab-exit"; readonly tabOnly: "tab-only"; }; /** * Back-compat runtime alias for {@link CardFocusModes}. * @public */ export declare const CardFocusMode: { readonly off: "off"; readonly noTab: "no-tab"; readonly tabExit: "tab-exit"; readonly tabOnly: "tab-only"; }; /** * The types for card focus modes * @public */ export type CardFocusMode = ValuesOf; /** * Card event names * @public */ export declare const CardEventNames: { readonly interactiveChanged: "interactive-changed"; readonly click: "click"; }; //# sourceMappingURL=card.options.d.ts.map