/** * Copyright 2025 © BeeAI a Series of LF Projects, LLC * SPDX-License-Identifier: Apache-2.0 */ declare function createHash(input: string, length?: number): string; declare function createRandomHash(length?: number): string; export { createHash, createRandomHash };