import { PaymentPixInConstructor, PaymentRequestInterface, PaymentResponseInterface, StatusRequestInterface, StatusResponseInterface } from "../interface"; import { HttpRequest } from "./http-request"; import { TokenService } from "./token"; export declare class PaymentPixIn { private readonly params; private readonly httpRequest; private readonly tokenService; private readonly ENDPOINT_GERAR_QRCODE_PIX_IN; constructor(params: PaymentPixInConstructor, httpRequest: HttpRequest, tokenService: TokenService); private getAxiosInstance; request(request: PaymentRequestInterface, tokenApp?: string): Promise; private generateQrcodeImage; status(params: StatusRequestInterface, tokenApp?: string): Promise; }