import type { NodePath } from '@babel/traverse';
import type { StringLiteral, TemplateElement } from '@babel/types';
import type { IJsHandlerOptions } from '../types/index.js';
import type { JsToken } from './types.js';
export declare function replaceHandleValue(path: NodePath<StringLiteral | TemplateElement>, options: IJsHandlerOptions): JsToken | undefined;
