import { BytearrayWrapper } from './bytearray-wrapper'; export interface ISignatureParams { label?: Uint8Array; supportedMessageCount(): number; adapt(messageCount: number): this; } export type MessageStructure = Record; export interface SignedMessages { encodedMessages: { [key: string]: Uint8Array; }; signature: Signature; } /** * The publicly known value (elliptic curve base point) which is used with (multiplied by) the secret key to generate the public key */ export declare class PublicKeyBase extends BytearrayWrapper { } //# sourceMappingURL=types.d.ts.map