import { JsonWebKey } from "crypto"; import { Result } from "neverthrow"; import { AlgorithmTypes } from "../sign"; import { VerifyDataEntry } from "./types"; export declare const splitWithSpace: (str: string) => string[]; export declare const joinWithSpace: (xs: readonly any[]) => string; export declare const stringToBytes: (str: string) => Uint8Array; export declare const decodeBase64: (bytes: string) => Result; export declare const generateSignatureBytes: (x: VerifyDataEntry[]) => Uint8Array; export declare const getAlgFromJwk: (jwk: JsonWebKey) => AlgorithmTypes | undefined; export * from "./generateDigest"; export * from "./generateVerifyData"; export * from "./getSignatureData"; export * from "./types";