export type VscodeCopilotHookCommandOptions = {
    local?: boolean;
    binaryPath?: string;
    nodePath?: string;
};
export type InstallVscodeCopilotHookResult = {
    hooksPath: string;
    backupPath?: string;
    migratedFromPath?: string;
    command: string;
};
export type UninstallVscodeCopilotHookResult = {
    hooksPath: string;
    removed: number;
    deletedFile: boolean;
};
export type VscodeCopilotDoctorReport = {
    hooksPath: string;
    status: "ok" | "warn" | "broken" | "disabled";
    issues: string[];
    advisories: string[];
    fixCommand: string;
    expectedCommand: string;
    detectedCommand?: string;
    checkedPaths: string[];
    missingPaths: string[];
};
export declare function getVscodeCopilotInstructionsSnippet(): string;
export declare function installVscodeCopilotHook(hooksPath?: string, options?: VscodeCopilotHookCommandOptions): Promise<InstallVscodeCopilotHookResult>;
export declare function uninstallVscodeCopilotHook(hooksPath?: string): Promise<UninstallVscodeCopilotHookResult>;
export declare function doctorVscodeCopilotHook(hooksPath?: string, options?: VscodeCopilotHookCommandOptions): Promise<VscodeCopilotDoctorReport>;
export declare function runVscodeCopilotPreToolUseHook(rawText: string, wrapLauncher?: string): Promise<number>;
