import React from 'react'; /** * Component for rendering live blog status indicator. * * @param {Object} props * @param {Boolean} props.realtime * @param {string} props.lastUpdatedDateTime */ type LiveBlogIndicatorProps = { realtime?: boolean; lastUpdatedDateTime: string; }; declare const LiveBlogIndicator: React.FC; export default LiveBlogIndicator;