import type { NightMarketOffer } from '../../components/blocks/night-market-offer'; type NightMarketOfferCardStyle = 'neon' | 'polaroid'; type NightMarketPosterProps = { /** Six offers arranged in a 2x3 grid. */ offers: NightMarketOffer[]; /** Small kicker on the top-left. */ kickerLabel?: string; /** Big headline, typically broken into two lines like `"ALL"` and `"6."`. */ titleTopLine?: string; titleBottomLine?: string; /** Footer player tag. */ playerTag: string; /** Footer brand label. */ brandLabel?: string; /** Currency suffix shown next to prices. */ priceSuffix?: string; /** Visual treatment for the six offer cards. Defaults to the neon market board. */ offerCardStyle?: NightMarketOfferCardStyle; /** Override the default 1080px canvas width. */ width?: number; /** Override the default 1920px canvas height. */ height?: number; }; /** * Night Market share poster inspired by the in-client 2x3 discount board: * oversized left headline and six discounted offers in a dense neon-accent grid. */ declare function NightMarketPoster({ offers, kickerLabel, titleTopLine, titleBottomLine, playerTag, brandLabel, priceSuffix, offerCardStyle, width, height, }: NightMarketPosterProps): import("react/jsx-runtime").JSX.Element; export { NightMarketPoster }; export type { NightMarketPosterProps, NightMarketOffer, NightMarketOfferCardStyle }; //# sourceMappingURL=night-market-poster.d.ts.map