import { Event } from '../../lib';
export declare const CHOICE_WEREWOLF: string;
export declare const EVENT_JOB_WEREWOLF: string;
export interface JobWerewolfEvent extends Event {
    from: string;
    to: string;
}
export declare function initJobWerewolfEvent(obj: {
    from: string;
    to: string;
}): JobWerewolfEvent;
