import { APIResponse, ConfigType } from "../../../../storefront-api-client/src"; import { ProductBackInStockRemind, ProductBackInStockRemindInput } from "../types"; export declare const saveProductBackInStockRemind: (input: SaveProductBackInStockRemindQueryParams, excludeFields?: string[], config?: ConfigType) => Promise | APIResponse>; export type SaveProductBackInStockRemindQueryParams = { input: ProductBackInStockRemindInput; };