import type { Sticky } from './sticky'; /** すでに stuck-js の管理下にある要素。二重登録を避けるために使う */ export declare const registeredElements: () => readonly HTMLElement[]; export declare const stacked: () => readonly Sticky[]; export declare const recalculate: () => void; export declare const register: (sticky: Sticky) => void; export declare const join: (...stickies: Sticky[]) => void; export declare const unregister: (...stickies: Sticky[]) => void; /** 登録されているものをすべて破棄して初期状態に戻す */ export declare const destroyAll: () => void;