import { CustomerCreateOptions } from './options'; import { Customer } from './responses'; declare module 'pagarme' { export namespace client { export namespace customers { function all(opts: any, body: any): Promise; function create(body: CustomerCreateOptions): Promise; function find(opts: any, body: any): Promise; } } }