interface Asset {
    gameAbsolutePath: string;
    fullAbsolutePath: string;
}
export interface LorDataDragonSetDataDTO {
    associatedCards: any[];
    associatedCardRefs: string[];
    assets: Asset[];
    region: string;
    regionRef: string;
    attack: number;
    cost: number;
    health: number;
    description: string;
    descriptionRaw: string;
    levelupDescription: string;
    levelupDescriptionRaw: string;
    flavorText: string;
    artistName: string;
    name: string;
    cardCode: string;
    keywords: string[];
    keywordRefs: string[];
    spellSpeed: string;
    spellSpeedRef: string;
    rarity: string;
    rarityRef: string;
    subtype: string;
    subtypes: string[];
    supertype: string;
    type: string;
    collectible: boolean;
    set: string;
}
export {};
//# sourceMappingURL=set-data.d.ts.map