export type Provider = { provider: string; dataSourceUrl: string; release: string; }; export type Gateway = { network: string; chainName: string; chainId?: number; chainSS58Prefix?: number; providers: Provider[]; }; export type GatewaysResponse = { archives: Gateway[]; }; export declare function getSubstrateGateways(): Promise; export declare function getEvmGateways(): Promise; //# sourceMappingURL=gateways.d.ts.map