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