import { APIResponse, ConfigType } from "../../../../storefront-api-client/src"; import { StorefrontTransaction, StringFilterInput } from "../types"; export declare const listOrderTransactions: (input: ListOrderTransactionsQueryParams, excludeFields?: string[], config?: ConfigType) => Promise | APIResponse>; export type ListOrderTransactionsQueryParams = { checkoutId?: StringFilterInput | null; id?: StringFilterInput | null; orderId?: StringFilterInput | null; };