import type { TeaserCardProps } from '@bonniernews/dn-design-system-web/assets/types/teaser-props.ts'; import { TeaserSplitProps } from '@bonniernews/dn-design-system-web/components/teaser-split/teaser-split.tsx'; interface TeaserSplitContainerProps extends Omit { areaType?: 'main' | 'bauta'; teasers: TeaserSplitProps[]; } /** * - GitHub: [BonnierNews/dn-design-system/web/src/components/teaser-split](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/teaser-split-container) * - Storybook: [TeaserSplit](https://designsystem.dn.se/?path=/docs/section-teasersplit-teasersplitcontainer--docs) */ export declare const TeaserSplitContainer: ({ areaType, theme, teasers, classNames, attributes, }: TeaserSplitContainerProps) => import("preact").JSX.Element; export {};