export { PublicKey, Field, Bool, AuthRequired, AuthorizationKind, UInt64, UInt32, Sign, TokenId, }; export { TypeMap }; declare type Field = string; declare type Bool = boolean; declare type UInt64 = string; declare type UInt32 = string; declare type PublicKey = string; declare type Sign = 'Positive' | 'Negative'; declare type AuthRequired = 'Signature' | 'Proof' | 'Either' | 'None' | 'Impossible'; declare type AuthorizationKind = 'Signature' | 'Proof' | 'None_given'; declare type TokenId = Field; declare type TypeMap = { PublicKey: PublicKey; Field: Field; Bool: Bool; AuthRequired: AuthRequired; AuthorizationKind: AuthorizationKind; UInt32: UInt32; UInt64: UInt64; Sign: Sign; TokenId: TokenId; number: number; null: null; undefined: null; string: string; };