export declare function equalCheckerFactory(): (a: any, b: any) => boolean; export declare function adamantIdFactory(): { head(name: string): string; tail(name: string): string; build(name: string, type: StringConstructor | NumberConstructor, id: string | number): string; parse(id: string): { name: string; type: StringConstructor | NumberConstructor; id: string | number; }; };