export interface SupplierProductUploadInterface {
    success: boolean,
    data: {
        rows: string[][],
        headings: {
            [key: string]: string
        },
        past_active_products: number
    },
}
