import { AxiosInstance } from 'axios'; import { TBoleto } from './types'; export declare type TRecuperarBoletoDetalhadoParams = { nossoNumero: string; }; declare type TRecuperarBoletoDetalhadoProps = { axios: AxiosInstance; accessToken: string; params: TRecuperarBoletoDetalhadoParams; }; export declare type TRecuperarBoletoDetalhadoResponse = TBoleto; export declare const recuperarBoletoDetalhado: (props: TRecuperarBoletoDetalhadoProps) => Promise; export {};