import { z } from 'zod';
/**
 * /v2/account/materials definition
 */
export declare const AccountMaterialsDTO: z.ZodArray<z.ZodObject<{
    /** Item id of the material. */
    id: z.ZodNumber;
    /** Material category. Can be resolved against /v2/materials. */
    category: z.ZodNumber;
    /** Binding of the material. Either "Account" or undefined. */
    binding: z.ZodOptional<z.ZodLiteral<"Account">>;
    /** Material count in the account storage. */
    count: z.ZodNumber;
}, z.core.$strict>>;
