/**
 * `ubon hooks install` — drop a Cursor `hooks.json` template (and matching
 * shell scripts) into the user's project. The hooks shell out to the
 * locally-installed `ubon` binary so they work whether the user globally
 * installed it (`npm i -g ubon`) or has it as a dev dep.
 */
interface InstallOptions {
    directory: string;
    cursor?: boolean;
    force?: boolean;
}
export declare function installCursorHooks(options: InstallOptions): {
    wrote: string[];
    skipped: string[];
};
export {};
//# sourceMappingURL=hooks.d.ts.map