import type { QuestionnaireItem, QuestionnaireResponseItem } from 'fhir/r4'; import type { PropsWithIsRepeatedAttribute, PropsWithParentIsReadOnlyAttribute, PropsWithParentIsRepeatGroupAttribute, PropsWithParentStylesAttribute, PropsWithQrItemChangeHandler } from '../../../interfaces/renderProps.interface'; import type { Tabs } from '../../../interfaces/tab.interface'; import type { Pages } from '../../../interfaces/page.interface'; interface GroupItemProps extends PropsWithQrItemChangeHandler, PropsWithIsRepeatedAttribute, PropsWithParentIsReadOnlyAttribute, PropsWithParentIsRepeatGroupAttribute, PropsWithParentStylesAttribute { qItem: QuestionnaireItem; qrItem: QuestionnaireResponseItem | null; groupCardElevation: number; disableCardView?: boolean; tabIsMarkedAsComplete?: boolean; tabs?: Tabs; currentTabIndex?: number; pageIsMarkedAsComplete?: boolean; pages?: Pages; currentPageIndex?: number; } declare function GroupItem(props: GroupItemProps): import("react/jsx-runtime").JSX.Element | null; export default GroupItem;