UNPKG

258 BTypeScriptView Raw
1import React from 'react';
2import { Scope } from './types';
3export declare const useBridge: (scope?: string | number | symbol | undefined) => [any, any];
4export declare const Bridge: React.FC<{
5 value: ReturnType<typeof useBridge>;
6 scope?: Scope;
7}>;