export declare class CreateFormTranslationDto {
    locale: string;
    translations: Record<string, string>;
}
export declare class UpdateFormTranslationDto {
    translations: Record<string, string>;
}
export declare class BatchImportTranslationsDto {
    translations: Record<string, Record<string, string>>;
    overwrite?: boolean;
}
