import type { TypeExpr } from "../ast/types.js"; import type { PackageSkillInput, PackageSkillResult } from "./types.js"; /** * Package a compiled Edict module as a portable skill. * * @param input - The compiled module, WASM binary, and optional metadata * @returns Structured result: `{ ok: true, skill }` or `{ ok: false, error }` */ export declare function packageSkill(input: PackageSkillInput): PackageSkillResult; /** * Convert an Edict TypeExpr to a human-readable string representation. * Used for skill package interface metadata. */ export declare function typeToString(type: TypeExpr): string; //# sourceMappingURL=package.d.ts.map