import type { ReactNode } from 'react'; import type { QuestionnaireItem } from 'fhir/r4'; interface ItemFieldGridProps { qItem: QuestionnaireItem; readOnly: boolean; labelChildren?: ReactNode; fieldChildren?: ReactNode; feedback?: string; dateFeedback?: string; timeFeedback?: string; } /** * Helper function to generate instruction ID if instructions exist and there's no feedback */ export declare function getInstructionsId(qItem: QuestionnaireItem, displayInstructions: string, hasFeedback: boolean): string | undefined; declare function ItemFieldGrid(props: ItemFieldGridProps): import("react/jsx-runtime").JSX.Element; export default ItemFieldGrid;