/** * Creates a "portal" for transporting an element from one location to another. * The element gets moved to its destination on open(), * and restored to its original location on close(). */ export declare function createPortal(src: Node, dest: Node): { open(): void; close(): void; };