import { ZComponent } from './zcomponent'; /** * Retrieves the current `ZComponent` that is under construction. * * @returns The `ZComponent` currently under construction, or undefined if there isn't one. */ export declare function getCurrentZComponentConstruction(): ZComponent | undefined; /** * Sets the current `ZComponent` that is under construction. * * @param z - The `ZComponent` to set as currently under construction, or undefined to clear the current construction. */ export declare function setCurrentZComponentConstruction(z: ZComponent | undefined): void;