/**
 * Defers decorator execution to the next microtask (or macrotask) to allow entity factories to resolve.
 * @param {() => void} handler - Callback executed after the current call stack completes.
 */
export declare function DeferPropertyDecoratorExecution(handler: () => void): void;
