import { GatewayApiClient } from '@radixdlt/babylon-gateway-api-sdk'; import { RadixHookTypes } from '../utils/types.js'; export declare function getHookType(gateway: Readonly, hookAddress: string): Promise; export declare function getIgpHookConfig(gateway: Readonly, hookAddress: string): Promise<{ type: RadixHookTypes.IGP; address: string; owner: string; destinationGasConfigs: { [domainId: string]: { gasOracle: { tokenExchangeRate: string; gasPrice: string; }; gasOverhead: string; }; }; }>; export declare function getMerkleTreeHookConfig(gateway: Readonly, hookAddress: string): Promise<{ type: RadixHookTypes.MERKLE_TREE; address: string; }>; //# sourceMappingURL=hook-query.d.ts.map