import type { TeaserBaseProps, TeaserMediaProps, TeaserTextProps, TeaserThemeProps } from '@bonniernews/dn-design-system-web/assets/types/teaser-props.ts'; interface TeaserOnSiteProps extends TeaserBaseProps, TeaserThemeProps, TeaserMediaProps, TeaserTextProps { } /** * Also known as "På Plats-puffen". * * In the CMS title will be set to a location like "Kiev, Ukraina" or "USA" and text is usually set to some author names like "Jan Banan och Kalle Kula" * * - GitHub: [BonnierNews/dn-design-system/web/src/components/teaser-onsite](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/teaser-onsite) * - Storybook: [TeaserOnSite](https://designsystem.dn.se/?path=/docs/section-teaseronsite--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-onsite/teaser-onsite.scss'` */ export declare const TeaserOnSite: ({ areaType, targetLink, theme, classNames, attributes, media, title, text, }: TeaserOnSiteProps) => import("preact").JSX.Element; export {};