/** * Claude Code Hooks * * PreToolUse hooks for Claude Code execution control. * * @module agents/claude/hooks */ /** * Get the path to the directory guard hook script * * Returns the path to the compiled JavaScript hook script. * Use this when configuring ClaudeCodeConfig.directoryGuardHookPath. * * @returns Absolute path to directory-guard.js * * @example * ```typescript * const config: ClaudeCodeConfig = { * workDir: '/path/to/project', * restrictToWorkDir: true, * directoryGuardHookPath: getDirectoryGuardHookPath(), * }; * ``` */ export declare function getDirectoryGuardHookPath(): string; /** * Get the path to the TypeScript source of the directory guard hook * * Use this for development when running with tsx. * * @returns Absolute path to directory-guard.ts */ export declare function getDirectoryGuardHookSourcePath(): string; //# sourceMappingURL=index.d.ts.map