import type { InstructionImportEntry, InstructionImportResolution, InstructionTarget } from "./instruction-types.js"; export declare function parseInstructionImports(content: string): string[]; export declare function resolveInstructionImports({ entryId, entries, target, }: { entryId: string; entries: InstructionImportEntry[]; target: InstructionTarget; }): InstructionImportResolution; export declare function resolveInstructionImportsFromFile({ registryPath, entryId, target, }: { registryPath: string; entryId: string; target: InstructionTarget; }): Promise;