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