import { z } from 'zod';
/**
 * /v2/guild/permissions definition
 */
export declare const GuildPermissionsDTO: z.ZodArray<z.ZodObject<{
    /** The permission id. */
    id: z.ZodString;
    /** The permission name. */
    name: z.ZodString;
    /** Description of the permission. */
    description: z.ZodString;
}, z.core.$strict>>;
