/** * The content which can be put a each place. */ export declare const enum PlaceContent { Empty = 0, Red = 1, Yellow = 2, Green = 3, Blue = 4 } /** * A help sheet, either for values or for money. */ export default interface HelpSheet { readonly low: PlaceContent; readonly medium: PlaceContent; readonly high: PlaceContent; readonly waiting: PlaceContent; }