/**
 * A contract declaring the reward response, consists of amount and type of the reward
 */
export interface Reward {
    amount?: number;
    type?: string;
}
