import { RefundSearch } from './../models/common'; import { RefundResponse, RefundListResponse, PaginationParams, SearchResponse } from '../models'; import { Client, Config } from '../Client'; export declare class RefundResource extends Client { protected get baseURL(): string; constructor(config: Config); protected getKey(): string; create(chargeId: string): Promise; retrieve(chargeId: string, refundId: string): Promise; list(params?: PaginationParams): Promise; listForCharge(chargeId: string, params?: PaginationParams): Promise; search(params: RefundSearch): Promise; }