declare enum Ownership {
    AllowAll = 0,
    Resource = 1,
    NFT = 2,
    None = 3
}
export { Ownership };
