import React from 'react'; declare const RadioListItem: React.FC<{ value: string; active?: boolean; label?: string; showDivider?: boolean; onClick?: (value: string) => void; }>; export default RadioListItem;