export declare const defaultCreateAttachedObjFuncStr = "\nfunction (div, viewer) {\n const { Destroyable } = XE2['xe2-base-utils'];\n class AttachedObj extends Destroyable {\n constructor() {\n super();\n const container = document.createElement('div');\n container.style.color = 'white';\n container.style.width = '100%';\n container.style.height = '100%';\n container.style.backgroundColor = 'rgba(0, 0, 0, 0.5)';\n container.setAttribute('m3t-div', 'LayoutDiv AttachedObj container');\n container.innerText = `\u8FD9\u662F\u7B2C\u4E00\u884C 123\n\u8FD9\u662F\u7B2C\u4E8C\u884C\n\u8FD9\u662F\u7B2C\u4E09\u884C\n`;\n div.appendChild(container);\n this.dispose(() => div.removeChild(container));\n }\n }\n return new AttachedObj();\n}\n";