export declare class PortalState {
    /**
     * The parent portal in the portal tree.
     */
    parent: PortalState | null;
    /**
     * Collection of all children portals in this sub-tree.
     */
    roots: Set<HTMLElement>;
    addRoot(root: HTMLElement): void;
    delRoot(root: HTMLElement): void;
}
