import { ConvertedProductType, ProductType } from '../types'; export declare type convertProductType = { product: ProductType; i18n: any; index?: number; }; declare function convertProduct({ product, i18n, index }: convertProductType): ConvertedProductType; declare namespace convertProduct { var displayName: string; var __docgenInfo: { description: string; displayName: string; props: { product: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; i18n: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; index: { defaultValue: { value: number; }; description: string; name: string; required: boolean; type: { name: string; }; }; }; }; } export default convertProduct;