import { CommandClause } from "@psdk/frame-father"; import { BasicCPCLArg } from "./basic"; export declare class CBox extends BasicCPCLArg { private lineWidth; private topLeftX; private topLeftY; private bottomRightX; private bottomRightY; constructor(options?: { /** * 边框线条宽度 */ lineWidth?: number; /** * 矩形框左上角x坐标 */ topLeftX?: number; /** * 矩形框左上角y坐标 */ topLeftY?: number; /** * 矩形框右下角x坐标 */ bottomRightX?: number; /** * 矩形框右下角y坐标 */ bottomRightY?: number; }); clause(): CommandClause; header(): string; } //# sourceMappingURL=box.d.ts.map