import type { Payload } from '@xyo-network/sdk-protocol'; import type { ModuleInstance } from '../module-model/index.js'; import type { CustomWitnessModule } from './CustomModule.js'; import type { WitnessModuleEventData } from './EventData.js'; import type { WitnessInstance } from './Instance.js'; import type { WitnessParams } from './Params.js'; import type { WitnessQueryFunctions } from './QueryFunctions.js'; export type CustomWitnessInstance, TIn, TOut> = WitnessModuleEventData, TIn, TOut>> = CustomWitnessModule & WitnessQueryFunctions & ModuleInstance; //# sourceMappingURL=CustomInstance.d.ts.map