import { IPrintAdapter } from '../../domain/interfaces/adapters/iprint.adapter'; import { PrintResult } from '../../domain/interfaces/adapters/print-result.interface'; /** * Print Adapter * Handles execution of print commands using the system's print service */ export declare class PrintAdapter implements IPrintAdapter { /** * Executes a print command * @param command - The complete print command to execute * @returns PrintResult with success status and any error details */ executePrintCommand(command: string): Promise; } //# sourceMappingURL=print.adapter.d.ts.map