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