export type TestCaseExpected = "should_activate" | "should_not_activate" | "auto"; export interface ParsedTestCase { prompt: string; expected: TestCaseExpected; } export declare function parseTestCases(content: string): ParsedTestCase[]; export declare function serializeTestCases(prompts: ParsedTestCase[]): string; export declare function upsertTestCasesIntoSkillMd(content: string, prompts: ParsedTestCase[]): string;