import { StoreType } from "../enums/StoreType";
import { Region } from "../enums/Region";
import { IMigrosNecessaryHeaders } from "../interfaces/headers";
export interface IProductDetailOptions extends Record<string, any> {
    uids?: string | string[];
    storeType?: StoreType;
    region?: Region;
    newCategoryTree?: boolean;
    warehouseId?: number;
    ongoingOfferDate?: string;
    migrosIds?: string;
}
export declare function getProductDetail(productDetailOptions: IProductDetailOptions, headers: IMigrosNecessaryHeaders): Promise<any>;
