import type { TeaserBaseProps, TeaserMediaProps, TeaserTextProps, TeaserVignetteProps } from '@bonniernews/dn-design-system-web/assets/types/teaser-props.ts'; interface TeaserNativeProps extends TeaserBaseProps, TeaserMediaProps, TeaserTextProps, TeaserVignetteProps { nativeVariant?: 'standard' | 'large' | 'right'; } /** * - GitHub: [BonnierNews/dn-design-system/web/src/components/teaser-native](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/teaser-tipsa) * - Storybook: [TeaserNative](https://designsystem.dn.se/?path=/docs/section-teasertnative--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-native/teaser-native.scss'` * */ export declare const TeaserNative: ({ targetLink, areaType, title, text, media, vignette, nativeVariant, classNames, attributes, }: TeaserNativeProps) => import("preact").JSX.Element; export {};