declare module "@genshin-db/tcg" {
	export interface TcgCardBoxes {
		id: number;
		name: string; // translated

		description: string; // translated
		descriptionraw: string; // translated

		source: string; // translated

		rarity: number;
		
		images: {
			filename_icon: string;
			filename_bg: string;
		};

		version: string;
	}
}