import type { D3SvgElementSelection } from "../../types";
import type { PolymerBond } from "../../../../domain/entities/PolymerBond";
import { TransientView } from './TransientView';
export declare class BondSnapView extends TransientView {
    static readonly viewName = "BondSnapView";
    static show<P extends PolymerBond>(transientLayer: D3SvgElementSelection<SVGGElement, void>, bond: P): void;
}
