import type { PropsWithParentIsReadOnlyAttribute, PropsWithParentIsRepeatGroupAttribute, PropsWithParentStylesAttribute, PropsWithQrRepeatGroupChangeHandler } from '../../../interfaces/renderProps.interface'; import type { QuestionnaireItem, QuestionnaireResponseItem } from 'fhir/r4'; interface RepeatGroupProps extends PropsWithQrRepeatGroupChangeHandler, PropsWithParentIsReadOnlyAttribute, PropsWithParentIsRepeatGroupAttribute, PropsWithParentStylesAttribute { qItem: QuestionnaireItem; qrItems: QuestionnaireResponseItem[]; groupCardElevation: number; } /** * Main component to render a repeating, group Questionnaire item. * Store and manages the state of multiple instances of GroupItem in a repeating group. * * @author Sean Fong */ declare function RepeatGroup(props: RepeatGroupProps): import("react/jsx-runtime").JSX.Element; export default RepeatGroup;