import { Extension } from "./extension";
/**
 * A Package is a representation of a npm package.
 *
 * Once installed, a Package is an Extension
 */
export declare class Package {
    resolvedInfo: any;
    get id(): string;
    get name(): string;
    get version(): string;
    get source(): string;
    install(force?: boolean): Promise<Extension>;
    get allVersions(): Promise<Array<string>>;
}
//# sourceMappingURL=package.d.ts.map