import Platform from "../interfaces/Platform";
export default class Platforms {
    private commerceId;
    constructor(commerceId: number);
    /**
     * @description Obtiene las plataformas disponibles para tu comercio
     * @returns {Promise<Platforms[]>} Plataformas aceptaas por tu comercio
     */
    getAllPlatforms(): Promise<Platform[]>;
}
