import type { BoundedContext, Entity, EnumType, Worker } from "../../core/domain/project-map.js"; import type { IExtractor } from "./extractor.port.js"; import { type StorageResult } from "./slices/storage/extract.js"; export type ExtractorSet = { readonly contexts: IExtractor; readonly entities: IExtractor; readonly enums: IExtractor; readonly storage: IExtractor; readonly workers: IExtractor; }; export declare function defaultExtractors(): ExtractorSet;