import { Key } from '../foundation/key'; import { ListTileControlAffinity } from './list-tile'; import { Color } from '../../../mx-dart-sdk'; import { StatelessWidget } from '../widgets/framework'; import { MXWidget } from 'mxflutter-base'; declare class RadioListTile extends StatelessWidget { value: any; groupValue: any; onChanged: any; toggleable: boolean; activeColor: Color; title: MXWidget; subtitle: MXWidget; secondary: MXWidget; isThreeLine: boolean; dense: boolean; selected: boolean; controlAffinity: ListTileControlAffinity; autofocus: boolean; constructor(namedParameters?: { key?: Key; value?: any; groupValue?: any; onChanged?: any; toggleable?: boolean; activeColor?: Color; title?: MXWidget; subtitle?: MXWidget; isThreeLine?: boolean; dense?: boolean; secondary?: MXWidget; selected?: boolean; controlAffinity?: ListTileControlAffinity; autofocus?: boolean; }); mx_f_toDSL(): { key: Key; value: string; groupValue: string; onChanged: (value: any) => void; toggleable: boolean; activeColor: Color; title: MXWidget; subtitle: MXWidget; isThreeLine: boolean; dense: boolean; secondary: MXWidget; selected: boolean; controlAffinity: ListTileControlAffinity; autofocus: boolean; className: string; }; } export { RadioListTile };