export declare enum CLAIM_COMMANDS { ADD_CLAIM = "addClaim" } export interface ClaimTx { "version": string; "command": CLAIM_COMMANDS; "data": {}; "proof": {}; } export declare class VCState { private signature; private holderHash; constructor(); /** * Updates the data, if a variable is provided as undefined, the variables are not altered. If the claim needs to be retracted, put the variables on NULL. * @param signature * @param holderHash */ UpdateState(signature?: string, holderHash?: string): void; GetSignature(): string; GetHolderHash(): string; getJson(): string; }