import { APIResponse, ConfigType } from "../../../../storefront-api-client/src"; import { StockLocation, StringFilterInput } from "../types"; export declare const listStockLocation: (input: ListStockLocationQueryParams, excludeFields?: string[], config?: ConfigType) => Promise | APIResponse>; export type ListStockLocationQueryParams = { id?: StringFilterInput | null; includeDeleted?: boolean | null; };