import { BaseEndpoint } from "./base";
export default class ServiceInvoicesEndpoint extends BaseEndpoint {
    /**
     * Downloads the PDF for a service invoice.
     * Returns the raw binary data as an ArrayBuffer.
     */
    getPDF(id: string): Promise<import("..").MPPResult<ArrayBuffer>>;
}
