office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
14 lines (13 loc) • 395 B
TypeScript
import * as React from 'react';
/**
* Interface for ChoiceGroupBasicExample state.
*/
export interface IChoiceGroupBasicExampleState {
imageKey: string;
}
export declare class ChoiceGroupBasicExample extends React.Component<any, IChoiceGroupBasicExampleState> {
constructor();
render(): JSX.Element;
private _onChanged();
private _onImageChoiceGroupChange(option, evt?);
}