import * as React from 'react'; export interface ContentProps { content?: React.ReactNode; goToComment?: (id: string) => void; onContentBottomReached?: (visible: boolean) => void; onContentTopReached?: (visible: boolean) => void; targetId?: string; } export declare const Content: React.FC;