import type { Component } from "./component.js"; export declare const Component_stack: { readonly active: () => Component; readonly push: (component: Component) => void; readonly pop: () => void; };