import { FC } from 'react'; import { DocViewerProps } from '../../../DocViewer'; interface SplitDocViewerProps { left: DocViewerProps; right: DocViewerProps; syncScroll?: boolean; } export declare const SplitDocViewer: FC; export {};