import { type Result } from "./result.js"; type CodexHookEntry = { readonly key: string; readonly command: string; readonly source: string; readonly currentHash: string; readonly trustStatus: string; }; declare const listCodexHooks: (cwd: string) => Promise>; export { listCodexHooks }; export type { CodexHookEntry };