export declare const CARD_SPACING: readonly ["small", "medium", "large"];
export declare const CARD_ALIGNS: readonly ["left", "center", "right"];
export type CardAlign = (typeof CARD_ALIGNS)[number];
export type CardSpacing = (typeof CARD_SPACING)[number];
