/** * Copyright (c) 2019 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Koya Sakuma * Adapted from MolQL implemtation of atom-set.ts * * Copyright (c) 2017 MolQL contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal */ import { StructureQuery } from '../query.js'; import { QueryContext, QueryFn } from '../context.js'; export declare function atomCount(ctx: QueryContext): number; export declare function countQuery(query: StructureQuery): (ctx: QueryContext) => number; export declare function propertySet(prop: QueryFn): (ctx: QueryContext) => Set;