import { CommandClause } from "@psdk/frame-father"; import { BasicCPCLArg } from "./basic"; import { CFont, CRotation } from "../types"; export declare class CText extends BasicCPCLArg { x: number; y: number; private content; private readonly font; private rotation; private charset; constructor(options?: { /** * 起始横坐标 */ x?: number; /** * 起始纵坐标 */ y?: number; /** * 条码内容 */ content?: string; /** * 字体 */ font?: CFont; /** * 旋转 */ rotation?: CRotation; /** * 编码 */ charset?: string; }); clause(): CommandClause; header(): string; } //# sourceMappingURL=text.d.ts.map