import { Seller } from '../../types'; import AppsAPIClient from '..'; export default class Sellers { private client; constructor(apiClient: AppsAPIClient); /** * Gets the sellers for an application scoped to the given API key. * @returns {Promise} Promise that resolves to an Seller. */ getSellersForAppId(appId: string): Promise; /** * Creates a seller for an application scoped to the given API key. * @returns {Promise} Promise that resolves to an Seller. */ createSeller(appId: string, email: string, password: string, country: string): Promise; }