import { z } from 'zod'; export type Translation = { [key: string]: string | Translation; }; export declare const translationGuard: z.ZodType;