import type { NotificationTarget } from "./target.js"; export interface BroadcastChannel extends NotificationTarget { channelId: string; bundleId: string; } export declare function BroadcastChannel(channelId: string, bundleId: string): BroadcastChannel;