import { Dictionary, Package } from "@manuth/package-json-editor";
/**
 * Provides constants for this package.
 */
export declare class Constants {
    /**
     * The metadata of this package.
     */
    private static package;
    /**
     * The dependencies of this package.
     */
    private static dependencies;
    /**
     * Gets the metadata of this package.
     */
    static get Package(): Package;
    /**
     * Gets the dependencies of this package.
     */
    static get Dependencies(): Dictionary<string, string>;
}
