/** * Parse an env flag value to a tri-state: true / false / null (absent or * unrecognised). Unrecognised values fall through to the disk layers — we * do NOT throw or coerce to false silently. */ declare function parseEnvFlag(raw: string | undefined): boolean | null; /** * Resolve the SKILL-CURATION feature flag for the given working directory. * * Default OFF — the helper returns true only when an explicit `true` value * is found in the env override or one of the config layers. * * `cwd` defaults to `process.cwd()` for production call sites; tests pass * a temp dir to isolate filesystem state. */ export declare function isSkillCurationEnabled(cwd?: string): boolean; export declare const _internal: { parseEnvFlag: typeof parseEnvFlag; ENV_FLAG: string; }; export {};