/** * Copyright (c) 2025 The Lynx Authors. All rights reserved. * Licensed under the Apache License Version 2.0 that can be found in the * LICENSE file in the root directory of this source tree. */ import type * as CSS from '@lynx-js/css-serializer'; import type { ElementTemplateData } from '../types/index.js'; export type TasmJSONInfo = { styleInfo: Record; manifest: Record; cardType: string; appType: string; pageConfig: Record; lepusCode: Record; customSections: Record; }>; elementTemplates: Record; }; export declare function encode(tasmJSON: TasmJSONInfo): Uint8Array;