import { BaseDependencyManager } from './base-dependency-manager.js';
import { PackageDownloader } from '../package-downloader.js';
export declare class KubectlDependencyManager extends BaseDependencyManager {
    constructor(downloader: PackageDownloader, installationDirectory: string, osArch: string, kubectlVersion: string);
    /**
     * Get the Kubectl artifact name based on version, OS, and architecture
     */
    protected getArtifactName(): string;
    getVersion(executableWithPath: string): Promise<string>;
    protected getDownloadURL(): string;
    /**
     * Handle any post-download processing before copying to destination
     * Child classes can override this for custom extraction or processing
     */
    protected processDownloadedPackage(packageFilePath: string): Promise<string[]>;
    protected getChecksumURL(): string;
}
