import { ComponentHost } from '../core'; import type { JNode, WithChildren } from '../jsx'; export declare function Portal(props: { /** portal 的目标元素,默认为 document.body。注意该属性为单向绑定属性。 */ target?: HTMLElement; } & WithChildren, host: ComponentHost): (Node | ComponentHost)[];