import { Hex } from 'viem'; import { Address } from './ContractTypes'; declare function getContractAddress(tokenName: string): Promise
; declare function setIsEntitled(contractName: string, userAddress: Address, id: bigint, entitled: boolean): Promise; declare function isEntitled(customEntitlementContractName: string, userAddresses: Address[], id: bigint): Promise; declare function encodeIdParameter(id: bigint): Hex; export declare const TestCrossChainEntitlement: { getContractAddress: typeof getContractAddress; encodeIdParameter: typeof encodeIdParameter; setIsEntitled: typeof setIsEntitled; isEntitled: typeof isEntitled; }; export {}; //# sourceMappingURL=TestCrossChainEntitlement.d.ts.map