import { Node, Relationship } from "../classes"; import { RelationField, Context } from "../types"; declare function createAggregateWhereAndParams({ node, field, varName, chainStr, context, aggregation, relationship, }: { node: Node; field: RelationField; varName: string; chainStr: string; context: Context; aggregation: any; relationship: Relationship; }): [string, any]; export default createAggregateWhereAndParams; //# sourceMappingURL=create-aggregate-where-and-params.d.ts.map