/** * ## Printer * This module handles all printing-related tasks, allowing the kiosk to produce receipts, tickets, and other printed materials. * * @packageDocumentation */ import { PrinterResponse, PrintHtmlDto } from './printer-status'; import { PlatformPrinter } from '@eflyn/esuite-client'; export * from './printer-status'; export declare class Printer { printHtml(printDto: PrintHtmlDto): Promise; getPrinterList(): Promise; }