import { IDropdownOption } from "office-ui-fabric-react/lib/components/Dropdown/Dropdown.types";
export interface ChoiceData {
    name: string;
    choices: IDropdownOption[];
    multiple: boolean;
    exclusiveKey?: string;
    changedValues?: string[];
}
