import type { ClobSigner } from "../signer.ts"; import type { Chain } from "../types.ts"; /** * Builds the canonical Polymarket CLOB EIP712 signature * @param signer * @param ts * @returns string */ export declare const buildClobEip712Signature: (signer: ClobSigner, chainId: Chain, timestamp: number, nonce: number) => Promise;