import type { ConventionLevel } from "../config/convention-registry.js"; export declare function collectConventionFiles(projectDir: string): readonly string[]; export declare function readYamlScalar(source: string, key: string): string | undefined; export declare function readIndentedYamlScalar(source: string, parentKey: string, key: string): string | undefined; export declare function readPersonaMeta(source: string, key: string): string | undefined; export declare function readPersonaListMeta(source: string, key: string): readonly string[]; export declare function readLevel(value: string | undefined): ConventionLevel; export declare function readBooleanMeta(value: string | undefined): boolean; export declare function slugFor(id: string): string;