import { BaseApi } from '../base'; import { MapsDTO, ValidMaps } from '../@types/maps'; export declare class Maps extends BaseApi { getRaw(username: string): Promise; getMaps(username: string): Promise; getMap(username: string, map: ValidMaps): Promise; }