import React, { ReactElement } from 'react'; import { FollowButtonSlot } from './FollowButtonSlot'; import type { ArticleQuery } from '@financial-times/cp-content-pipeline-client'; export type TopperProps = { content: ArticleQuery['content']; slot?: string; followButtonSlot?: FollowButtonSlot; showPremiumLabel?: boolean; readNextSlot?: () => ReactElement; }; declare const Topper: React.FC; export default Topper;