import type { CliRunResult } from "./bearshell.js"; type BackendShapeOptions = { readonly projectDir?: string; }; type ShapeFinding = { readonly criterion: string; readonly result: "PASS" | "WARN"; readonly evidence: string; }; export declare const BACKEND_SHAPE_REPORT_PATH = ".persona/workflow/backend-shape-report.md"; export declare function normalizeBackendShapePathForTest(filePath: string): string; export declare function backendShapeBoundaryForTest(files: readonly string[]): ShapeFinding; export declare function stripJavaCommentsAndLiteralsForTest(content: string): string; export declare function backendShapeCheckCriteriaForTest(): readonly string[]; export declare function runBackendShapeReview(options?: BackendShapeOptions): CliRunResult; export {};