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