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