import type { Migration, Table } from "../../../../core/domain/project-map.js"; import type { IExtractor } from "../../extractor.port.js"; import type { ExtractionContext } from "../../extraction-context.js"; export type StorageResult = { tables: Table[]; migrations: Migration[]; }; export declare class StorageExtractor implements IExtractor { readonly name = "storage"; extract(ctx: ExtractionContext): Promise; }