import type { QuestionnaireItem } from 'fhir/r4'; interface BooleanFieldProps { qItem: QuestionnaireItem; readOnly: boolean; valueBoolean: boolean | undefined; feedback: string; feedbackSeverity?: 'error' | 'warning'; calcExpUpdated: boolean; instructionsId: string | undefined; onCheckedChange: (newValue: string) => void; onClear: () => void; } declare const BooleanField: import("react").NamedExoticComponent; export default BooleanField;