import { StringValidator } from "./Validator"; /** * The relationship of the user with the family-shared purchase to which they have access. * * {@link https://developer.apple.com/documentation/appstoreserverapi/inappownershiptype inAppOwnershipType} */ export declare enum InAppOwnershipType { FAMILY_SHARED = "FAMILY_SHARED", PURCHASED = "PURCHASED" } export declare class InAppOwnershipTypeValidator extends StringValidator { }