import type { SuiJsonRpcClient } from '@mysten/sui/jsonRpc'; /** * Discovers the CCIP package ID associated with a given Sui onramp package. * * @param ramp - sui onramp or offramp address, packageId with module suffix * @param client - sui client * @returns ccip package id */ export declare const getCcipStateAddress: import("micro-memoize").Memoized<(ramp: string, client: SuiJsonRpcClient) => Promise, { maxArgs: number; async: true; }>; /** * Gets the Sui offramp package ID associated with a given CCIP package ID. * * @param ccip - Sui CCIP Package Id * @param client - Sui client * @returns Sui offramp package id */ export declare const getOffRampForCcip: (ccip: string, client: SuiJsonRpcClient) => Promise; //# sourceMappingURL=discovery.d.ts.map