import type { ExtensionContext } from "@earendil-works/pi-coding-agent"; export declare function registerHookAutocomplete(ctx: ExtensionContext): void; export declare function resetHookAutocompleteForTests(): void; interface HookAutocompleteInstrumentation { readonly onDiscovery?: () => void; readonly onProjectResolution?: () => void; } export declare function __setHookAutocompleteInstrumentationForTests(instrumentation: HookAutocompleteInstrumentation | undefined): void; export {};