import type { TeaserBaseProps, TeaserMediaProps } from '@bonniernews/dn-design-system-web/assets/types/teaser-props.ts'; interface TeaserCounterProps extends TeaserBaseProps, TeaserMediaProps { areaType?: 'main' | 'bauta'; counterText: string; counterNumber: number; subtitle?: string; } /** * - GitHub: [BonnierNews/dn-design-system/web/src/components/teaser-onsite](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/teaser-counter) * - Storybook: [TeaserCounter](https://designsystem.dn.se/?path=/docs/section-teaser-counter--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-counter/teaser-counter.scss'` */ export declare const TeaserCounter: ({ areaType, targetLink, classNames, attributes, media, counterText, counterNumber, title, subtitle, }: TeaserCounterProps) => import("preact").JSX.Element; export {};