import { Command } from "commander"; /** * Extract the instructions body from an installed SKILL.md. * Returns the text after the second `---` frontmatter delimiter, trimmed. */ export declare function extractInstructionsBody(fileContent: string): string; /** * Compute SHA-256 hex digest of skill instructions — mirrors API content-hash logic. */ export declare function computeContentHash(instructions: string): string; export declare const verifyCommand: Command; //# sourceMappingURL=verify.d.ts.map