/** * 選擇卡片的排列方向。 * - `'horizontal'` — 水平排列 * - `'vertical'` — 垂直排列 */ export type SelectionCardDirection = 'horizontal' | 'vertical'; /** * 選擇卡片的選取類型。 * - `'radio'` — 單選 * - `'checkbox'` — 多選 */ export type SelectionCardType = 'radio' | 'checkbox'; export type SelectionCardImageObjectFit = 'cover' | 'contain' | 'fill' | 'none' | 'scale-down'; export declare const selectionCardPrefix = "mzn-selection-card"; export declare const selectionCardClasses: { host: string; group: string; container: string; selectionImage: string; text: string; supportingText: string; content: string; direction: (direction: SelectionCardDirection) => string; disabled: string; readonly: string; selected: string; focused: string; icon: string; input: string; };