import { APIResponse, ConfigType } from "../../../../storefront-api-client/src"; import { PaginationInput, PaymentGateway, StringFilterInput } from "../types"; export declare const listPaymentGateway: (input: ListPaymentGatewayQueryParams, excludeFields?: string[], config?: ConfigType) => Promise | APIResponse>; export type ListPaymentGatewayQueryParams = { cartId?: string | null; id?: StringFilterInput | null; includeDeleted?: boolean | null; locale?: string | null; pagination?: PaginationInput | null; transactionAmount?: number | null; };