import { type ShopDiaryOffer } from '../../components/blocks/polaroid-card'; type ShopDiaryPosterProps = { /** The four (or more/less) offers to lay out in the 2-column grid. */ offers: ShopDiaryOffer[]; /** Brand wordmark shown in the footer. */ brandLabel: string; /** Small kicker above the big title (e.g. `"THE DAILY FOUR"`). */ issueLabel: string; /** Long date shown in the header (e.g. `"APR 23 · 2026"`). */ dateLabel: string; /** Optional player tag shown in the poster footer. */ playerTag?: string; /** Currency suffix shown after the price. Defaults to `"VP"`. */ priceSuffix?: string; /** Override the default 1080px canvas width. */ width?: number; /** Override the default 1920px canvas height. */ height?: number; }; /** * "Daily Four" share poster — a 1080×1920 magazine-style layout wrapping * the day's shop rotation. Header carries the issue label while * `PolaroidCard` renders each polaroid-style offer tile. The footer carries * the brand mark alongside the player tag. */ declare function ShopDiaryPoster({ offers, brandLabel, issueLabel, dateLabel, playerTag, priceSuffix, width, height, }: ShopDiaryPosterProps): import("react/jsx-runtime").JSX.Element; export { ShopDiaryPoster }; export type { ShopDiaryPosterProps, ShopDiaryOffer }; //# sourceMappingURL=shop-diary-poster.d.ts.map