import { ApiBase } from '../../base/apiBase';
/**
 * /v2/build Api
 */
export declare class BuildApi extends ApiBase {
    /**
     * Returns the current build id of the game.
     * NOTE: This endpoint is broken, and after a certain timestamp, seems to be returning the exact same value.
     */
    get(): Promise<{
        id: number;
    }>;
}
