import React from 'react'; import { StructuredTreeFragment } from '@financial-times/cp-content-pipeline-client'; type indicators = { isOpinion?: boolean; }; export type LiveBlogPostProps = { id: string; postId: string; title: string; content: string; bodyHTML: string; body: any; publishedTimestamp: string; publishedDate: string; isPinned: boolean; articleUrl: string; showShareButtons: boolean; showShareLinkButton: boolean; byline: StructuredTreeFragment; ad: unknown; indicators?: indicators; authors: Array; }; declare const LiveBlogPost: React.FC; export { LiveBlogPost };