import { JBChainId } from "juice-sdk-core"; /** * Hook to resolve the actual dataHook address if it is the JBOmnichainDeployer4_1 address. * * @param dataHookAddress - The data hook address from the ruleset metadata * @param projectId - The project ID * @param chainId - The chain ID * @returns The resolved data hook address */ export declare function useResolveDataHook({ dataHookAddress, projectId, chainId, rulesetId, }: { dataHookAddress: `0x${string}` | undefined; projectId: bigint | undefined; chainId: JBChainId | undefined; rulesetId: bigint | undefined; }): { resolvedDataHook: `0x${string}`; dataHookIsOmnichainDeployer: boolean; isLoading: boolean; error: import("viem").ReadContractErrorType | null; }; //# sourceMappingURL=useResolveDataHook.d.ts.map