//#region src/namespaces/spotify/common/types.d.ts
declare namespace SpotifyNs {
  type Limit = {
    recentCount?: number;
  };
  type Partner = {
    id: string;
  };
  type Sandbox = {
    enabled: boolean;
  };
  type FeedAccess = {
    partner?: Partner;
    sandbox?: Sandbox;
  };
  type Entitlement = {
    name: string;
  };
  type ItemAccess = {
    entitlement?: Entitlement;
  };
  type Feed = {
    limit?: Limit;
    countryOfOrigin?: string;
    access?: FeedAccess;
  };
  type Item = {
    access?: ItemAccess;
  };
}
//#endregion
export { SpotifyNs };