import type { TypeCheck } from '@ariestools/sdk'; import { IsObjectFactory } from '@ariestools/sdk'; import type { AttachableModuleInstance } from '../../module-model/index.js'; import type { BridgeModuleEventData } from '../EventData.js'; import type { BridgeInstance } from '../Instance.js'; import type { BridgeModule } from '../Module.js'; import type { BridgeParams } from '../Params.js'; /** @deprecated The Bridge module concept is deprecated and will be removed in the next major version. */ export interface AttachableBridgeInstance extends BridgeModule, AttachableModuleInstance, BridgeInstance { } /** @deprecated The Bridge module concept is deprecated and will be removed in the next major version. */ export type AttachableBridgeInstanceTypeCheck = TypeCheck; /** @deprecated The Bridge module concept is deprecated and will be removed in the next major version. */ export declare class IsAttachableBridgeInstanceFactory extends IsObjectFactory { } //# sourceMappingURL=AttachableInstance.d.ts.map