/** * ⚠️ Sets null property to not be seen as a plain object * * - This way the library can detect its objects even if multiple instances of the * library are in memory */ export interface ReplaceIt { __replaceIt: X; } /** * ⚠️ Sets null property to not be seen as a plain object * * - This way the library can detect its objects even if multiple instances of the * library are in memory */ export declare function replaceIt(x: X): ReplaceIt; export declare function isReplaceIt(x: unknown): x is ReplaceIt; //# sourceMappingURL=replaceIt.d.ts.map