import React from 'react'; import type { CitationNumberToChatCitationMap } from '../AIChat/AIChatPage/markdownCitationHelperFunctions'; type citationNumberToDisplayOrderMapType = Record; interface SupWrapperProps { children: React.ReactNode; citationNumberToDisplayOrderMap?: citationNumberToDisplayOrderMapType; citationNumberToChatCitationMap?: CitationNumberToChatCitationMap | undefined; className?: HTMLElement['className']; chatSessionId: string; messageId: string; shouldOpenLinksInNewTab?: boolean; } declare const SupWrapper: React.FC; export default SupWrapper;