import { z } from 'zod';
/**
* /v2/guild/:id/storage definition
*/
exportdeclare const GuildStorageDTO: z.ZodArray<z.ZodObject<{
/** The id of the consumable. */
id: z.ZodNumber;
/** Amount of the consumable in storage. */
count: z.ZodNumber;
}, z.core.$strict>>;