/** * Copyright (c) 2018-2020 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Michal Malý * @author Jiří Černý */ import { DnatcoTypes } from '../types.js'; import { DataLocation } from '../../../mol-model/location.js'; import { DataLoci } from '../../../mol-model/loci.js'; export declare namespace ConfalPyramidsTypes { interface Location extends DataLocation { } function Location(step: DnatcoTypes.Step, isLower: boolean): DataLocation<{ step: DnatcoTypes.Step; isLower: boolean; }, {}>; function isLocation(x: any): x is Location; interface Loci extends DataLoci { } function Loci(data: DnatcoTypes.Step[], elements: ReadonlyArray): Loci; function isLoci(x: any): x is Loci; }