import type { EffectDesert } from './effectDesert.csv'; type StatusCardDesertTable = readonly { readonly id: string; readonly name: string; readonly desc: string; readonly unplayable: boolean; readonly effects: readonly ["self", EffectDesert, number]; }[]; export type StatusCardDesert = StatusCardDesertTable[number]; declare function getData(): StatusCardDesertTable; export default getData;