// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; import "../../styles/BasicIA.css"; export interface IAChoiceGroupState { selectedKey: string; } export interface ChoiceOptions { key: string; text: string; disabled?: boolean; } export interface IAChoiceGroupProps { label?: string; style?: React.CSSProperties; options: ChoiceOptions[]; className?: string; selectedKey: string; highlightColor: string; required: boolean; onChange: (key: any) => void; } export class IAChoiceGroup extends React.Component { constructor(props: IAChoiceGroupProps); componentWillReceiveProps(props: IAChoiceGroupProps): void; render(): JSX.Element; }