type TranslationMessage = {
    id: string;
    value: string;
};
type TranslationItem = {
    id: string;
    messages: TranslationMessage[];
};
export type TranslationRequest = {
    sourceLocale: string;
    targetLocales: string[];
    items: TranslationItem[];
};
export type TranslationResponse = {
    status: number;
    error?: string | undefined;
    results: Record<string, TranslationItem[]>;
};
export {};
