declare const populateProducts: (psProducts: Array<any>) => {
    id: any;
    name: any;
    slug: string;
    attributeId: any;
    regularPrice: any;
    discountPrice: any;
    coverImageSmall: any;
    coverImageMedium: any;
    coverImageLarge: any;
    images: any;
    attributes: any;
    groups: any;
    quantity: any;
    description: any;
    shortDescription: any;
    brand: any;
    category: any;
    packProducts: any;
    productInfo: any;
}[];
export default populateProducts;
