/** * `__ECO_PAGES__.rerunScripts` registry access for navigation reruns. * @module */ export type RerunScriptCallback = () => void; /** Attribute storing the original module `src` after cache-busting. */ export declare const RERUN_SRC_ATTR = "data-eco-rerun-src"; /** * Returns a registered in-memory rerun callback for the given script id. */ export declare function getRegisteredRerunScript(scriptId: string | null): RerunScriptCallback | null;