import { Command } from 'commander';
import type { CLIResult, Services } from '../../common/types.js';
export interface InstallHooksArgs {
    targetDir?: string;
    force?: boolean;
}
export declare function installHooks(args: InstallHooksArgs, _services: Services): Promise<CLIResult>;
export declare const hooksCommand: Command;
