import { z } from 'zod';
/**
 * /v2/files definition
 */
export declare const FilesDTO: z.ZodArray<z.ZodObject<{
    /** The file identifier. */
    id: z.ZodString;
    /** The URL to the image. */
    icon: z.ZodString;
}, z.core.$strict>>;
