import { DominoValue } from '../game/DominoValue'; import { TrainBranch } from '../game/TrainData'; import { TrainLayoutStyle } from '../app/trainLayout'; export interface TrainFixture { id: string; name: string; description: string; angle: number; dominoes: DominoValue[]; layoutStyles: TrainLayoutStyle[]; } export interface ChickenFootFixture { id: string; name: string; description: string; angle: number; branch: TrainBranch; layoutStyles: TrainLayoutStyle[]; } export declare const TRAIN_FIXTURES: TrainFixture[]; export declare function getTrainFixture(id: string): TrainFixture | undefined; export declare const CHICKEN_FOOT_FIXTURES: ChickenFootFixture[]; export declare function getChickenFootFixture(id: string): ChickenFootFixture | undefined;