import type { SharedProps } from '@bonniernews/dn-design-system-web/assets/types/shared-props.ts'; export interface DirektHeaderProps extends SharedProps { title: string; subtitle?: string; pretitle?: string; isAnimated?: boolean; renderAsH2?: boolean; } /** * - GitHub: [BonnierNews/dn-design-system/web/src/components/teaser-onsite](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/direkt-header) * - Storybook: [DirektHeader](https://designsystem.dn.se/?path=/docs/section-direkt-header--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/direkt-header/direkt-header.scss'` */ export declare const DirektHeader: ({ classNames, attributes, title, subtitle, pretitle, isAnimated, renderAsH2, }: DirektHeaderProps) => import("preact").JSX.Element;