/**
 * An enumeration of possible statuses of a package
 */
export declare enum PackageStatus {
    /**
     * The server is not aware of such a package.
     */
    UNKNOWN = 0,
    /**
     * The server is able to execute DAML commands operating on this package.
     */
    REGISTERED = 1
}
