import { Refund } from './responses'; import { RefundFindOptions } from './options'; declare module 'pagarme' { export namespace client { export namespace refunds { function find(opts: any, body: RefundFindOptions): Promise; function cancel(opts: any, body: any): any; } } }