/** * Types of dynamic parts that can be updated in a snapshot * These are determined at compile time through static analysis */ export declare const DynamicPartType: { readonly Attr: 0; readonly Spread: 1; readonly Slot: 2; readonly Children: 3; readonly ListChildren: 4; readonly MultiChildren: 5; }; export type DynamicPartType = (typeof DynamicPartType)[keyof typeof DynamicPartType]; /** * Default dynamic part for children */ export declare const __DynamicPartChildren_0: [DynamicPartType, number][];