import * as smartenv from '@push.rocks/smartenv'; import * as smartstring from '@push.rocks/smartstring'; export { smartenv, smartstring }; declare const stableJson: any; export { stableJson }; export interface IStableJsonTypes { Comparator: (a: IStableJsonTypes['CompareDescriptor'], b: IStableJsonTypes['CompareDescriptor']) => number; CompareDescriptor: { key: string; value: any; }; Options: { cmp?: (a: IStableJsonTypes['CompareDescriptor'], b: IStableJsonTypes['CompareDescriptor']) => number; cycles?: boolean; }; }