import { ProtocolResponse } from '../Base/ProtocolResponse'; import { TLevel } from '../WSAPI/WSAPITypes'; import { Level } from './Level'; export interface GetLevelMapResponse extends ProtocolResponse { levels: Level[]; } export declare const GetLevelMapResponseTransform: (levels: GetLevelMapResponse) => TLevel[];