import type { ModuleQueries } from '../../module-model/index.js'; import type { BridgeConnectQuery } from './Connect.js'; import type { BridgeDisconnectQuery } from './Disconnect.js'; import type { BridgeExposeQuery } from './Expose.js'; import type { BridgeUnexposeQuery } from './Unexpose.js'; export * from './Connect.js'; export * from './Disconnect.js'; export * from './Expose.js'; export * from './Unexpose.js'; /** @deprecated The Bridge module concept is deprecated and will be removed in the next major version. */ export type BridgeQueries = BridgeConnectQuery | BridgeDisconnectQuery | BridgeExposeQuery | BridgeUnexposeQuery; /** @deprecated The Bridge module concept is deprecated and will be removed in the next major version. */ export type BridgeModuleQueries = ModuleQueries | BridgeQueries; //# sourceMappingURL=index.d.ts.map