import { Recipient } from './responses'; import { RecipientUpdateOptions, RecipientCreateOptions } from './options'; declare module 'pagarme' { export namespace client { export namespace recipients { function all(opts: any, body: any): any; function create(opts: RecipientCreateOptions): Promise; function update(opts: RecipientUpdateOptions): Promise; function find(opts: any): any; } } }