import { z } from 'zod';
/**
 * /v2/build definition
 */
export declare const BuildDTO: z.ZodObject<{
    /** The id of the current game build. */
    id: z.ZodNumber;
}, z.core.$strict>;
