import type { KlawConfig } from "../../../config/types.klaw.js"; export type CodexNativeAssetHit = { kind: "skill" | "plugin" | "config" | "hooks"; path: string; }; export declare function scanCodexNativeAssets(params: { cfg: KlawConfig; env?: NodeJS.ProcessEnv; }): Promise; export declare function collectCodexNativeAssetWarnings(params: { cfg: KlawConfig; env?: NodeJS.ProcessEnv; }): Promise;