import { SpacingSystemProps } from '@20minutes/hela'; import { default as React } from 'react'; import { ContentProps } from '../Content/Content'; export interface SlideshowStoryProps extends SpacingSystemProps { imageSrc: string; height: number; width: number; isDisplayedAsNotCropped: boolean; caption: { content: string; credits?: string; source?: string; }; content: ContentProps; title?: string; } export declare const SlideshowStory: React.FC;