import { ConvertedProductType, ProductType } from '../types'; export declare type convertProductType = { product: ProductType; i18n: any; index?: number; }; declare function convertProduct({ product, i18n, index }: convertProductType): ConvertedProductType; export default convertProduct;