import React from 'react'; interface ChoiceRadioSingleProps { value: string; label: string; styledLabel?: React.ReactNode; readOnly: boolean; disabledViaToggleExpression: boolean; fullWidth: boolean; } declare function ChoiceRadioSingle(props: ChoiceRadioSingleProps): import("react/jsx-runtime").JSX.Element; export default ChoiceRadioSingle;