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