import { type StringToBytesErrorType } 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 LabelhashErrorType = BytesToHexErrorType | DeserializeLabelHashErrorType | Keccak256ErrorType | StringToBytesErrorType | ErrorType; export declare function labelhash(label: string): `0x${string}`; //# sourceMappingURL=labelhash.d.ts.map