import { z } from 'zod/v4'; export declare const TRANSLATION_MEMORY_SCHEMA: z.ZodObject<{ id: z.ZodNumber; name: z.ZodString; }, z.core.$strip>; export type TranslationMemory = z.infer; export declare const GET_EXPERT_TRANSLATION_MEMORIES_RESPONSE_SCHEMA: z.ZodObject<{ project_id: z.ZodString; project_uuid: z.ZodGUID; translation_memories: z.ZodArray>; }, z.core.$strip>; export type GetExpertTranslationMemoriesResponse = z.infer;