import type { Hex } from "../encoding/hex.js"; /** * Calculates the keccak ID of the given input. * @param input - The input value to calculate the keccak ID for. * @returns The keccak ID as a Hex string. * @example * ```ts * import { keccackId } from "thirdweb/utils"; * const keccakId = keccackId(input); * ``` * @utils */ export declare function keccakId(input: string): Hex; //# sourceMappingURL=keccak-id.d.ts.map