import { FoundryPage } from "../types/index.js"; import { BaseSystemStateAdapter } from "./base.js"; /** * State adapter for the D&D 5th Edition system. */ export declare class DnD5eStateAdapter extends BaseSystemStateAdapter { readonly id = "dnd5e"; constructor(page?: FoundryPage); getTestActorData(_name: string): { type: string; system: { attributes: { hp: { value: number; max: number; }; }; }; }; }