import type { Ref } from '@stacksjs/stx'; /** * Reactive BroadcastChannel API for cross-tab communication. */ export declare function useBroadcastChannel(name: string): UseBroadcastChannelReturn; export declare interface UseBroadcastChannelReturn { isSupported: Ref channel: Ref data: Ref error: Ref post: (data: any) => void close: () => void isClosed: Ref }