import type { Atom } from "../CoreAtom";
import type { Bond } from "../CoreBond";
export declare class MoleculeSnakeLayoutNode {
    molecule: (Atom | Bond)[];
    constructor(molecule: (Atom | Bond)[]);
}
