import Dungeon from "./dungeon"; declare type AttributesObject = { [key: string]: string; }; export declare function debugRoomGrid(dungeon: Dungeon): void; export declare type DebugHtmlConfig = { empty?: string; emptyAttributes?: AttributesObject; wall?: string; wallAttributes?: AttributesObject; floor?: string; floorAttributes?: AttributesObject; door?: string; doorAttributes?: AttributesObject; containerAttributes?: AttributesObject; }; export declare function debugHtmlStringMap(dungeon: Dungeon, config?: DebugHtmlConfig): string; export declare function debugHtmlMap(dungeon: Dungeon, config?: DebugHtmlConfig): DocumentFragment; export declare type DebugConsoleConfig = { empty?: string; emptyColor?: string; wall?: string; wallColor?: string; floor?: string; floorColor?: string; door?: string; doorColor?: string; fontSize?: string; }; export declare function debugMap(dungeon: Dungeon, config?: DebugConsoleConfig): void; export {};