/** * Example UI Source File * * This demonstrates how to create a Minecraft Bedrock JSON UI file * using the TypeScript builder pattern. */ declare const _default: import("../").UIDefinition; export default _default; /** * Export elements that can be referenced from other namespaces. * Other files can use nsRef() to create a reference without duplicating. */ export declare const sharedButton: import("../").PanelBuilder; /** * Method 2: Using defineUI with ns.add() * * Use this when you need multiple top-level elements in a namespace, * or when modifying existing vanilla UI. */ export declare const complexExample: import("../").UIDefinition; /** * Method 3: Modifying existing vanilla UI * * Use namespace builder directly when you need raw control. */ export declare const hudModification: { namespace: import("../").UINamespace; filename: string; }; //# sourceMappingURL=example_hud.d.ts.map