import { Chain } from 'viem'; import { NagaEndpointsType } from '../managers/endpoints-manager/endpoints'; import { signatures as localDevSignatures } from '../../envs/naga-local/generated/naga-develop'; declare const HTTP: "http://"; declare const HTTPS: "https://"; type SupportedProtocols = typeof HTTP | typeof HTTPS; export interface INetworkConfig { minimumThreshold: number; network: string; rpcUrl: string; abiSignatures: T; chainConfig: Chain; httpProtocol: SupportedProtocols; networkSpecificConfigs?: M; endpoints: NagaEndpointsType; services: { loginServiceBaseUrl: string; }; requiredAttestation: boolean; } export type DefaultNetworkConfig = INetworkConfig; export {};