/** * @module common */ /** End Typedoc Module Declaration */ import { AbstractModel } from '../model'; import { HandModel } from './hand.model.fixture'; export declare class ThumbModel extends AbstractModel { thumbId: string; name: string; hand: HandModel; }