import { IMigrosNecessaryHeaders } from "../interfaces/headers";
export interface IProductSupplyOptions {
    pids: string;
    costCenterIds: string | string[];
}
export declare function getProductSupply(productSupplyOptions: IProductSupplyOptions, headers: IMigrosNecessaryHeaders): Promise<any>;
