import { BufferReader } from "./buffer-reader.js"; import { BufferWriter } from "./buffer-writer.js"; export declare const PathTool: { readonly PATH_OPEN: 1; readonly TOOL_CUT: 2; readonly TOOL_DRAW: 4; readonly SEAM_ALLOWANCE: 8; readonly TOOL_RHINESTONE: 16; readonly FILL: 32; readonly AUTO_ALIGN: 64; readonly TOOL_DRAW_ONLY: 4096; readonly TOOL_EMBOSS: 8192; readonly TOOL_FOIL: 16384; readonly TOOL_PERFORATING: 32768; }; export type PathToolFlags = number; export declare function readPathTool(reader: BufferReader): PathToolFlags; export declare function writePathTool(flags: PathToolFlags, writer: BufferWriter): void;