import { NodePath } from '@babel/core'; import { Identifier, MemberExpression, ConditionalExpression, Expression } from '@babel/types'; import Template from '../template'; export declare function transformJSXConditionalExpression({ path, template, test, target, anchor }: { path: NodePath; template: Template; test?: Expression; target: Identifier | MemberExpression; anchor?: Identifier; }): void;