import { ClaimScheme, ClaimTopic } from './claim/Claim.interface';
import { KeyPurpose, KeyType } from './identity/Key.interface';
import * as crypto from './crypto-module';
declare const enums: {
    ClaimScheme: typeof ClaimScheme;
    ClaimType: typeof ClaimTopic;
    KeyPurpose: typeof KeyPurpose;
    KeyType: typeof KeyType;
};
declare const contracts: {
    ERC734: any;
    ERC735: any;
    Identity: any;
};
export { crypto, enums, contracts };
export * from './core/utils/Utils';
