import type { Hex } from "../utils/encoding/hex.js"; /** * Determines if a signature is compatible with [ERC6492](https://eips.ethereum.org/EIPS/eip-6492) * * @param {Hex} signature The signature to check for ERC6492 compatibility * * @returns {boolean} True if the signature is compatible with ERC6492, false otherwise * * @example * ```ts * import { isErc6492Signature } from 'thirdweb/auth'; * * const isErc6492 = isErc6492Signature('0x1234567890123456789012345678901234567890'); * ``` * * @auth */ export declare function isErc6492Signature(signature: Hex): boolean; //# sourceMappingURL=is-erc6492-signature.d.ts.map