import { AxiosInstance } from 'axios'; export declare type TRecuperarBoletoEmPDFParams = { nossoNumero: string; }; declare type TRecuperarBoletoEmPDFProps = { axios: AxiosInstance; accessToken: string; params: TRecuperarBoletoEmPDFParams; }; export declare type TRecuperarBoletoEmPDFResponse = { pdf: string; }; export declare const recuperarBoletoEmPDF: (props: TRecuperarBoletoEmPDFProps) => Promise; export {};