import { SemanticVersion } from '../../../business/utils/semantic-version.js';
/**
 * The response from the helm version command.
 */
export declare class Version {
    readonly version: string;
    constructor(version: string);
    /**
     * Returns a SemanticVersion representation of the version.
     * @returns the helm version
     */
    asSemanticVersion(): SemanticVersion<string>;
}
