import { PrintTemplate } from './types'; type __VLS_Props = { /** 双向绑定模板 */ template?: PrintTemplate; /** 初始模板(v-model 未绑定时使用) */ initialTemplate?: Partial; /** 只读模式 */ readonly?: boolean; /** 已保存模板列表(用于模板管理弹窗) */ savedTemplates?: PrintTemplate[]; /** 操作员名(预览时使用) */ operator?: string; /** 打印机名(预览时使用) */ printerName?: string; }; declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & { save: (v: PrintTemplate) => any; preview: (v: PrintTemplate) => any; "update:template": (v: PrintTemplate) => any; "load-template": (v: PrintTemplate) => any; "delete-template": (id: string) => any; "export-template": (v: PrintTemplate) => any; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ onSave?: (v: PrintTemplate) => any; onPreview?: (v: PrintTemplate) => any; "onUpdate:template"?: (v: PrintTemplate) => any; "onLoad-template"?: (v: PrintTemplate) => any; "onDelete-template"?: (id: string) => any; "onExport-template"?: (v: PrintTemplate) => any; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; declare const _default: typeof __VLS_export; export default _default;