import { FC } from 'react'; import { EngagementScreenProps } from '../EngagementComp'; import { BlockItemWithPrerenderedContainers } from '../types'; interface ContentPageProps { isActive: boolean; page: BlockItemWithPrerenderedContainers; renderBlocks: (json: EngagementScreenProps) => JSX.Element; } export declare const ContentPage: FC; export {};