import * as React from 'react'; export interface LayoutTalkProps { content?: React.ReactNode; footerContent?: React.ReactNode; headerContent?: React.ReactNode; goToBottomButton?: React.ReactNode; goToTopButton?: React.ReactNode; isChronologicalOrder?: boolean; onContentBottomReached?: () => void; onContentTopReached?: () => void; target?: string; } export declare const LayoutTalk: React.FC;