/**
 * VS Code extension installation utilities
 */
/**
 * Get the path to the bundled VSIX file
 */
export declare function getVsixPath(): string;
/**
 * Check if the VS Code CLI is available
 */
export declare function isVSCodeCliAvailable(): boolean;
/**
 * Check if the nanocoder VS Code extension is installed
 */
export declare function isExtensionInstalled(): boolean;
/**
 * Install the VS Code extension from the bundled VSIX
 * Returns a promise that resolves when installation is complete
 */
export declare function installExtension(): Promise<{
    success: boolean;
    message: string;
}>;
//# sourceMappingURL=extension-installer.d.ts.map