import { AxiosInstance } from 'axios'; export declare type TCancelarBoletoParams = { nossoNumero: string; motivoCancelamento: 'ACERTOS' | 'APEDIDODOCLIENTE' | 'PAGODIRETOAOCLIENTE' | 'SUBSTITUICAO'; }; declare type TCancelarBoletoProps = { axios: AxiosInstance; accessToken: string; params: TCancelarBoletoParams; }; export declare const cancelarBoleto: (props: TCancelarBoletoProps) => Promise; export {};