import { z } from 'zod';
/**
 * /v2/mailcarriers definition.
 */
export declare const MailCarriersDTO: z.ZodArray<z.ZodObject<{
    /** The id of the mail carrier. */
    id: z.ZodNumber;
    /** An array of item ids used to unlock the mailcarrier. Can be resolved against /v2/items. */
    unlock_items: z.ZodArray<z.ZodNumber>;
    /** The order in which the mailcarrier appears in a list. */
    order: z.ZodNumber;
    /** The icon uri for the mail carrier. */
    icon: z.ZodString;
    /** The name of the mailcarrier as it appears in-game. */
    name: z.ZodString;
    /** Additional flags on the item, such as "Default" */
    flags: z.ZodArray<z.ZodString>;
}, z.core.$strict>>;
