type CursorHookCommandOptions = {
    local?: boolean;
    binaryPath?: string;
    nodePath?: string;
};
export type InstallCursorHookResult = {
    hooksPath: string;
    backupPath?: string;
    command: string;
};
export type CursorDoctorReport = {
    hooksPath: string;
    status: "ok" | "warn" | "broken" | "disabled";
    issues: string[];
    fixCommand: string;
    expectedCommand: string;
    detectedCommand?: string;
    checkedPaths: string[];
    missingPaths: string[];
};
export declare function installCursorHook(hooksPath?: string, options?: CursorHookCommandOptions): Promise<InstallCursorHookResult>;
export declare function doctorCursorHook(hooksPath?: string, options?: CursorHookCommandOptions): Promise<CursorDoctorReport>;
export declare function runCursorPreToolUseHook(rawText: string, wrapLauncher?: string): Promise<number>;
export {};
