import { z } from 'zod';
/**
 * /v2/homestead/glyphs definition
 */
export declare const HomesteadGlyphsDTO: z.ZodArray<z.ZodObject<{
    /** The homestead glyph id. */
    id: z.ZodString;
    /** The id of the glyph item.
     * Can be compared to the /v2/items endpoint. */
    item_id: z.ZodNumber;
    /** The slot it is attached to. */
    slot: z.ZodEnum<{
        harvesting: "harvesting";
        mining: "mining";
        logging: "logging";
    }>;
}, z.core.$strict>>;
