import type { NodePath } from '@babel/traverse'; import * as t from '@babel/types'; /** * Given a CallExpression path, extracts children and validates them. */ export declare function validateChildrenFromArgs(callExprPath: NodePath): { errors: string[]; value?: NodePath; }; //# sourceMappingURL=validateChildrenFromArgs.d.ts.map