import { BaseResponse } from "./base.response.js"; /** * PrintOrder 請求的回應資料結構。 * 可以是字串(HTML)或物件。 */ export type PrintOrderResponseData = string | { Result?: string; [key: string]: unknown; }; /** * PrintOrder 請求的回應。 */ export declare class PrintOrderResponse extends BaseResponse { /** * 從原始資料建立 PrintOrderResponse。 * * @param data - 原始回應資料。 * @returns 新的 PrintOrderResponse 實例。 */ static from(data: unknown): PrintOrderResponse; /** * 取得用於列印的 HTML 內容。 * * @returns HTML 字串。 */ getHtmlContent(): string; }