import { BridgeContext } from "../runtime/global"; export declare function notification(context: BridgeContext): { publish: (args: { biz?: string | undefined; name: string; data?: object | undefined; androidSystem?: boolean | undefined; }) => Promise; subscribe: (args: { biz?: string | undefined; name: string; callback: (data?: any) => void; androidSystem?: boolean | undefined; }) => Promise; unsubscribe: (subscribeId: string) => Promise; };