import Joi from 'joi'; import { Product } from '../models'; /** @description The response for the GetProducts method */ export declare class GetProductsResponse { /** @description The list of Products */ products: Product[]; } export declare const GetProductsResponseSchema: Joi.ObjectSchema;