import React from 'react'; import type { QuestionnaireItem } from 'fhir/r4'; import type { Tabs } from '../../interfaces/tab.interface'; interface FormBodyTabListWrapperProps { topLevelItems: QuestionnaireItem[]; currentTabIndex: number; tabs: Tabs; maxHeight?: string | number; } declare const FormBodyTabListWrapper: React.NamedExoticComponent; export default FormBodyTabListWrapper;