import { Players } from '../player';
export interface Choice {
    value: string;
    label: string;
    label_kind: 'player' | 'string';
}
export declare function alivePlayerOptions(players: Players): Array<Choice>;
