import React from 'react'; import type { FileLocation as FileLocationType } from '@jbrowse/core/util/types'; interface MSAViewerProps { msa?: string; tree?: string; gff?: string; msaFilehandle?: FileLocationType; treeFilehandle?: FileLocationType; gffFilehandle?: FileLocationType; colorScheme?: string; height?: number; } export default function MSAViewer({ msa, tree, gff, msaFilehandle, treeFilehandle, gffFilehandle, colorScheme, height, }: MSAViewerProps): React.JSX.Element; export {};