import * as t from '@babel/types'; import { ParsingConfig, ParsingOutput } from '../types.js'; /** * For the processTranslationCall function, this function handles the case where a other translation call is used. * Error is pushed if the other translation call is used. * @param arg - The argument to parse * @param config - The configuration to use * @param output - The output to use */ export declare function handleInvalidTranslationCall({ arg, config, output, }: { arg: t.ArgumentPlaceholder | t.SpreadElement | t.Expression; config: ParsingConfig; output: ParsingOutput; }): void;