import { ConstructorInterface } from "../interface"; import { Chargeback } from './chargeback'; import { KeyPix } from './key.pix'; import { PaymentPixIn } from './payment.pix-in'; import { TokenService } from './token'; import { PaymentTransaction } from './transaction'; export declare class PagSquare { paymentPixIn: PaymentPixIn; keyPix: KeyPix; transaction: PaymentTransaction; chargeback: Chargeback; tokenService: TokenService; private readonly httpRequest; private readonly ambientes; private readonly hostname; constructor(params: ConstructorInterface); }