import { IPackageDescriptorOptions } from "./IPackageDescriptorOptions";
/**
 * Provides an abstraction of a package.
 */
export declare class PackageDescriptor {
    /**
     * The identifier of the package.
     */
    private identifier;
    /**
     * Initializes a new instance of the `PackageDescriptor` class.
     */
    constructor(options: IPackageDescriptorOptions);
    /**
     * Gets or sets the identifier of the package.
     */
    Identifier: string;
}
