/**
 * Queues execution until auto DTO context becomes available on the provided prototype.
 * @param {object} target - DTO prototype awaiting context.
 * @param {() => void} executor - Callback to execute once context is ready.
 */
export declare function QueueAutoContextRetry(target: object, executor: () => void): void;
