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