import * as t from '@babel/types'; import { ParsingConfig } from '../types.js'; import { ParsingOutput } from '../types.js'; import { InlineMetadata } from './extractStringEntryMetadata.js'; /** * For the processTranslationCall function, this function handles the case where a string literal or template literal is used. * @param arg - The argument to parse * @param metadata - The metadata to use * @param config - The configuration to use * @param output - The output to use * @param index - The index of the argument * @param contextVariants - Optional derive context variants for cross-product */ export declare function handleLiteralTranslationCall({ arg, metadata, config, output, index, contextVariants, }: { arg: t.StringLiteral | t.TemplateLiteral; metadata: InlineMetadata; config: ParsingConfig; output: ParsingOutput; index?: number; contextVariants?: string[]; }): void;