main
 1declare function wrap<T extends object>(name: string, api: T): T;
 2/**
 3 * @internal
 4 * @private
 5 * @protected
 6 */
 7export declare const bus: {
 8    override: (key: string, value: any) => Map<string, any>;
 9    wrap: typeof wrap;
10    lock: () => void;
11};
12export {};