/** * Svelte action to teleport a DOM element to a different target (e.g. body) */ export declare function portal( node: HTMLElement, target?: string | HTMLElement, ): { update(newTarget: string | HTMLElement): void; destroy(): void; };