import { Choice } from './choice';
export interface OpenChoice {
    kind: string;
    options: Array<Choice>;
    value: string | undefined;
}
export interface PlayerInfo {
    id: string;
    roleDisp: string | undefined;
    dead: boolean | undefined;
    choices: Array<OpenChoice>;
    data: {
        [key: string]: any;
    };
}
