import { Boleto, IntopaysConstructor } from "../../app/Intopays";
import { PageResponse } from "./helpers/PageResponse";
export declare class BoletoRemote {
    constructor(config: IntopaysConstructor);
    create(data: Boleto): Promise<{
        data: Boleto;
    }>;
    search(data?: Partial<Boleto>): Promise<{
        data: PageResponse<Boleto>;
    }>;
    find(id: number | string): Promise<{
        data: Boleto;
    }>;
    void(id: number | string): Promise<{
        data: Boleto;
    }>;
}
