import { z } from 'zod';
/**
 * /v2/guild/:id/storage definition
 */
export declare 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>>;
