import { GatewayApiClient } from '@radixdlt/babylon-gateway-api-sdk'; import { MultisigIsms, RadixIsmTypes } from '../utils/types.js'; export declare function getIsmType(gateway: Readonly, ismAddress: string): Promise; export declare function getTestIsmConfig(gateway: Readonly, ismAddress: string): Promise<{ type: RadixIsmTypes.NOOP_ISM; address: string; }>; export declare function getMultisigIsmConfig(gateway: Readonly, ismAddress: string): Promise<{ address: string; type: MultisigIsms; threshold: number; validators: string[]; }>; export declare function getDomainRoutingIsmConfig(gateway: Readonly, ismAddress: string): Promise<{ type: RadixIsmTypes.ROUTING_ISM; address: string; owner: string; routes: { domainId: number; ismAddress: string; }[]; }>; //# sourceMappingURL=ism-query.d.ts.map