import { RestCommand } from "../../types.js"; //#region src/rest/commands/utils/hash.d.ts /** * Generate a hash for a given string. * @param string String to hash. * @returns Hashed string. */ declare const generateHash: (string: string) => RestCommand; /** * Verify a string with a hash. * @param string Source string. * @param hash Hash you want to verify against. * @returns Boolean. */ declare const verifyHash: (string: string, hash: string) => RestCommand; //#endregion export { generateHash, verifyHash }; //# sourceMappingURL=hash.d.ts.map