export declare const isObjectLiteral: (v: any) => v is object; export declare const isString: (v: any) => boolean; export declare const isStringOrNumber: (v: any) => boolean; export declare const makeCidString: (type: string, id: string | number) => string; export declare const isNonNegativeInteger: (v: any) => v is number; export declare function arrayMove(arr: any[], fromIndex: number, toIndex: number): void; export declare function mergeSets(...iterables: Set[]): Set; export declare const mergeMaps: (...iterables: Map[]) => Map;