import React from 'react'; interface TeaserImageProps { image: { url: string; height?: number; className?: string; backgroundPosition?: string; copyrightNotice?: string; copyrightNoticeXAlignment?: 'start' | 'end'; }; textBox?: { className?: string; title?: string; content?: string; }; } declare const TeaserImage: React.FC; export default TeaserImage;