/** Aspect ratio for `GridCardMedia` — a named preset or a custom width/height number (e.g. `4 / 3`). */ export type AspectRatio = 'vertical' | 'square' | 'horizontal' | number; /** Object-fit mode for media inside the card's media slot. */ export type ObjectFit = 'contain' | 'cover';