import type { ModuleQueries } from '../../module-model/index.js'; import type { NodeAttachQuery } from './Attach.js'; import type { NodeAttachedQuery } from './Attached.js'; import type { NodeCertifyQuery } from './Certify.js'; import type { NodeDetachQuery } from './Detach.js'; import type { NodeRegisteredQuery } from './Registered.js'; export * from './Attach.js'; export * from './Attached.js'; export * from './Certify.js'; export * from './Detach.js'; export * from './Registered.js'; export type NodeQueries = NodeAttachQuery | NodeCertifyQuery | NodeDetachQuery | NodeAttachedQuery | NodeRegisteredQuery; export type NodeModuleQueries = ModuleQueries | NodeQueries; //# sourceMappingURL=index.d.ts.map