import * as AST from "../../types/ast"; export declare function isComma(node: AST.Expression | AST.Other): boolean; export declare function getFunctionArguments(fn: AST.FunctionNode): (AST.Expression | AST.Other)[] | null;