/** * Copyright (c) 2026 Microblink Ltd. All rights reserved. */ /** * Defines a property on an object. * * @param targetObject - The object to define the property on. * @param property - The property to define. * @param newValue - The value to define the property to. * @returns A function that reverts the property to its original value. */ export declare function defineProperty>(targetObject: T, property: keyof T, newValue: unknown): () => void; //# sourceMappingURL=defineProperty.d.ts.map