import React from 'react'; /** @public */ export type BazaarOverviewCardProps = { title?: string; order: 'latest' | 'random'; fullWidth?: boolean; fullHeight?: boolean; }; /** @public */ export declare const BazaarOverviewCard: (props: BazaarOverviewCardProps) => React.JSX.Element;