import { Level } from '../Level'; import { Sheet } from '../Sheet'; import { SheetAbilities } from '../SheetAbilities'; import { SheetActivateableEffects } from '../SheetActivateableEffects'; import { SheetAttributes } from '../SheetAttributes'; import { SheetDefense } from '../SheetDefense'; import { SheetDevotion } from '../SheetDevotion'; import { SheetDisplacement } from '../SheetDisplacement'; import { SheetInventory } from '../SheetInventory'; import { SheetPoints } from '../SheetPoints'; import { SheetPowers } from '../SheetPowers'; import { SheetProficiencies } from '../SheetProficiencies'; import { SheetResistences } from '../SheetResistencies'; import { SheetSize } from '../SheetSize'; import { SheetSkills } from '../SheetSkills'; import { SheetSpells } from '../SheetSpells'; import { SheetTriggeredEffects } from '../SheetTriggeredEffects'; import { SheetVision } from '../SheetVision'; import { BuildingSheetOrigin } from './BuildingSheetOrigin'; import { BuildingSheetRace } from './BuildingSheetRace'; import { BuildingSheetRole } from './BuildingSheetRole'; export declare class BuildingSheet extends Sheet { protected sheetRace: BuildingSheetRace; protected sheetRole: BuildingSheetRole; protected sheetOrigin: BuildingSheetOrigin; protected sheetAbilities: SheetAbilities; protected sheetLifePoints: SheetPoints; protected sheetManaPoints: SheetPoints; protected sheetSkills: SheetSkills; protected sheetAttributes: SheetAttributes; protected sheetSpells: SheetSpells; protected sheetInventory: SheetInventory; protected sheetPowers: SheetPowers; protected sheetDefense: SheetDefense; protected sheetVision: SheetVision; protected sheetProficiencies: SheetProficiencies; protected sheetDisplacement: SheetDisplacement; protected sheetDevotion: SheetDevotion; protected sheetSize: SheetSize; protected sheetResistences: SheetResistences; protected buildSteps: never[]; protected level: Level; protected sheetTriggeredEffects: SheetTriggeredEffects; protected activateableEffects: SheetActivateableEffects; getSheetRace(): BuildingSheetRace; getSheetRole(): BuildingSheetRole; getSheetOrigin(): BuildingSheetOrigin; }