import type { TeaserBaseProps, TeaserBodyDecoratorsProps, TeaserBylineProps, TeaserFooterProps, TeaserHighlightProps, TeaserItalicHeadlineProps, TeaserMediaProps, TeaserTextProps, TeaserThemeProps, TeaserVariantProps, TeaserVignetteProps } from '@bonniernews/dn-design-system-web/assets/types/teaser-props.ts'; /** * - GitHub: [BonnierNews/dn-design-system/web/src/components/teaser-large](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/teaser-large) * - Storybook: [TeaserLarge](https://designsystem.dn.se/?path=/docs/section-teaserlarge--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/teaser-large/teaser-large.scss'` */ export interface TeaserLargeProps extends TeaserBaseProps, TeaserThemeProps, TeaserHighlightProps, TeaserItalicHeadlineProps, TeaserVignetteProps, TeaserVariantProps, TeaserMediaProps, TeaserBylineProps, TeaserTextProps, TeaserBodyDecoratorsProps, TeaserFooterProps { /** If the headline should be large (only if `isItalicHeadline` is true) */ isLargeHeadline?: boolean; variant?: 'default' | 'podcast'; } export declare const TeaserLarge: ({ title, targetLink, variant, areaType, theme, text, vignette, highlight, sticker, media, bylinePicture, isItalicHeadline, isLargeHeadline, isFlashingDot, publicationTime, duration, sectionName, attributes, classNames, }: TeaserLargeProps) => import("preact").JSX.Element;