import * as React from 'react'; import { RadioItem, StyleData, onStyleChange } from '../../utils/types'; import './index.less'; interface rowProps { title?: string; children?: any; styleData?: StyleData | any; dataList?: Array; styleKey: string; onStyleChange?: onStyleChange; value?: string; contentStyle?: any; longTitle?: boolean; } declare const _default: (props: rowProps) => React.JSX.Element; export default _default;