import type { TeaserBaseProps, TeaserBodyDecoratorsProps, TeaserFooterProps, TeaserHighlightProps, TeaserMediaProps, TeaserTextProps, TeaserThemeProps, TeaserVariantProps, TeaserVignetteProps } from '@bonniernews/dn-design-system-web/assets/types/teaser-props.ts'; export interface TeaserSplitProps extends TeaserBaseProps, TeaserThemeProps, TeaserHighlightProps, TeaserVignetteProps, TeaserVariantProps, TeaserMediaProps, TeaserTextProps, TeaserBodyDecoratorsProps, TeaserFooterProps { title: string; areaType?: 'main' | 'bauta'; variant?: 'default' | 'podcast'; } /** * - GitHub: [BonnierNews/dn-design-system/web/src/components/teaser-split](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/teaser-split) * - Storybook: [TeaserSplit](https://designsystem.dn.se/?path=/docs/section-teasersplit--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-split/teaser-split.scss'` */ export declare const TeaserSplit: ({ title, targetLink, variant, areaType, theme, text, vignette, highlight, sticker, media, isFlashingDot, publicationTime, duration, attributes, classNames, }: TeaserSplitProps) => import("preact").JSX.Element;