import type { SharedProps } from '@bonniernews/dn-design-system-web/assets/types/shared-props.ts'; export interface GameHeaderProps extends SharedProps { title: string; media?: string; descriptionHtml?: string; textColor?: string; backgroundColor?: string; } /** * - GitHub: [BonnierNews/dn-design-system/web/src/components/game-header](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/game-header) * - Storybook: [GameHeader](https://designsystem.dn.se/?path=/docs/section-Gameheader--docs) * * The component will not include styling by itself. Make sure to include the right styles for the component. See example below: * `@use '@bonniernews/dn-design-system-web/components/game-header/game-header.scss'` */ export declare const GameHeader: ({ title, media, descriptionHtml, classNames, backgroundColor, textColor, attributes, }: GameHeaderProps) => import("preact").JSX.Element;