export interface HwpxWriteOptions { title?: string; creator?: string; } /** * HWPX(OWPML) 패키지 빌더 (평문 → HWPX). * * OWPML 패키지 규칙(한컴 호환): * - mimetype 엔트리는 ZIP 내 첫 번째이며 STORE(무압축), 내용은 "application/hwp+zip". * - 요소만 네임스페이스 prefix(hp:/hh:), 속성은 prefix 없음. * - head/sec/package 루트에 풀 네임스페이스 선언, 첫 문단에 . * - META-INF/container.xml 가 rootfile 위치를 가리킴. * - 공통 컨벤션 상수는 ./hwp/owpml.ts 와 공유. * [shyang 2026-06-21] */ export declare class HwpxWriter { createFromPlainText(text: string, options?: HwpxWriteOptions): Promise; } export default HwpxWriter;