export = Common; declare class Common { constructor(config: any); config: any; /** * @param {CommonPlatformValidator.GetLocationsParam} arg - Arg object * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}` * @param {import("../PlatformAPIClient").Options} - Options * @returns {Promise} - Success response * @name getLocations * @summary: Get company locations * @description: Retrieve a list of locations associated with the company. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/common/getLocations/). */ getLocations({ locationType, id, requestHeaders }?: CommonPlatformValidator.GetLocationsParam, { responseHeaders }?: object): Promise; /** * @param {CommonPlatformValidator.SearchApplicationParam} arg - Arg object * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}` * @param {import("../PlatformAPIClient").Options} - Options * @returns {Promise} - * Success response * @name searchApplication * @summary: List sales channel categories * @description: This API retrieves details for a specific sales channel based on the provided search criteria. The search can be performed using the name of the sales channel - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/common/searchApplication/). */ searchApplication({ authorization, query, requestHeaders }?: CommonPlatformValidator.SearchApplicationParam, { responseHeaders }?: object): Promise; } import CommonPlatformValidator = require("./CommonPlatformValidator"); import CommonPlatformModel = require("./CommonPlatformModel");