export interface GetRemainingRefundableQuantitiesParams { orderId?: string; } export interface GetRemainingRefundableQuantitiesResponse { success: boolean; lineItems: Record; customSales: Record; timestamp: string; } export type GetRemainingRefundableQuantities = (params?: GetRemainingRefundableQuantitiesParams) => Promise;