/** * ⚠️ 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 IncrementIt { __incrementIt: By; } /** * ⚠️ 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 incrementIt(incrementBy: Amount): IncrementIt; export declare function isIncrementIt(x: unknown): x is IncrementIt; //# sourceMappingURL=incrementIt.d.ts.map