import { type ConcatErrorType } from '../data/concat.js'; import { type StringToBytesErrorType, type ToBytesErrorType } from '../encoding/toBytes.js'; import { type BytesToHexErrorType } from '../encoding/toHex.js'; import type { ErrorType } from '../errors/utils.js'; import { type Keccak256ErrorType } from '../hash/keccak256.js'; import { type DeserializeLabelHashErrorType } from './deserializeLabelHash.js'; export type NamehashErrorType = BytesToHexErrorType | DeserializeLabelHashErrorType | ToBytesErrorType | Keccak256ErrorType | StringToBytesErrorType | ConcatErrorType | ErrorType; export declare function namehash(name: string): `0x${string}`; //# sourceMappingURL=namehash.d.ts.map