import { SubChainNode } from "./types"; import { PolymerBond } from '../PolymerBond'; export declare class BaseSubChain { nodes: Array; bonds: Array; get lastNode(): SubChainNode; get firstNode(): SubChainNode; add(node: SubChainNode): void; get length(): number; }