/**
* Hashes a signal to its field element hex representation.
*
* @paramsignal - The signal to hash (string or Uint8Array)
* @returns 0x-prefixed hex string representing the signal hash
*/declarefunctionhashSignal(signal: string | Uint8Array): string;
export { hashSignal };