import Space from '../../lib/Space'; export default interface IImportProduct { readonly id: string; readonly slug: string; readonly name: string; readonly parent_name: string; readonly parent_name_en: string; readonly parent_slug: string; readonly parent_description: string; readonly brand: string; readonly category: string; readonly description: string; readonly seo_title: string; readonly seo_description: string; readonly sku: string; readonly upc: string; readonly ugs: string; readonly courant: string; readonly pref: string; readonly web: string; readonly cost: string; readonly pdsf: string; readonly currency: string; readonly stock_level?: string; readonly rp: string; readonly weight: string; readonly length: string; readonly width: string; readonly height: string; readonly draft: string; readonly parent_images: string; readonly images: string; readonly attributes: string; readonly attributes_2: string; readonly attributes_3: string; readonly attributes_4: string; readonly attributes_in_string: string; readonly is_multiple: string; readonly sort_by_asc: string; } export declare const parseAllProducts: (items: any, options: any, org: string, space: string, spaceObj?: Space) => Promise; export declare const createImage: (path: string, pathToStore: string) => Promise;