/** * prvc spec — manage Spec Records (SPEC-*) * prvc mistake — manage Mistake Records (MR-*) */ export declare function specCommand(baseDir: string, action: string, titleOrId: string | undefined, options: { risk?: string; status?: string; criteria?: string; paths?: string; decisions?: string; }): void; export declare function mistakeCommand(baseDir: string, action: string, titleOrId: string | undefined, options: { severity?: string; failureType?: string; rootCause?: string; trigger?: string; impact?: string; fix?: string; ruleId?: string; statement?: string; decisions?: string; }): void;