declare const parseCustomFunctionCall: (functionCallExpression: any) => { functionName: any; argumentExpressions: any; }; declare const isFunctionCallExpression: (expression: any) => boolean; declare const runCustomFunctionCallExpression: ({ customFunctions, functionName, argumentValues, transformationParentPath, }: { customFunctions: any; functionName: string; argumentValues: string[]; transformationParentPath: string; }) => any; export { isFunctionCallExpression, parseCustomFunctionCall, runCustomFunctionCallExpression, }; //# sourceMappingURL=custom-functions.d.ts.map