import { ApiResponse } from "../../apiResponse"; import { AppEnum, PrintBody, PrintNodePrinter, Printer } from "../../types"; export interface IManagementPrinterApiService { GetPrintersFromPrintNodeAsync(printNodeApiKey: string): Promise>; GetPrintersFromTenantAsync(): Promise>; GetPrinterApikeyAsync(): Promise>; GetPrintersByAppIdAsync(appId: AppEnum): Promise>; PrintReportAsync(data: PrintBody): Promise>; AddPrinterToAppAsync(appId: AppEnum, data: Printer): Promise>; AddPrinterToTenantAsync(data: Printer): Promise>; SavePrinterApiKeyAsync(apiKey: string): Promise>; RemovePrinterFromAppAsync(appId: AppEnum, printerId: string): Promise>; RemovePrinterFromTenantAsync(printerId: string): Promise>; } //# sourceMappingURL=iPrinterApiService.d.ts.map