import { nagaTestSignatures } from '@lit-protocol/contracts'; import { Chain } from 'viem'; import type { NagaEndpointsType } from '../../shared/managers/endpoints-manager/endpoints'; import { BaseNetworkEnvironment } from '../base/BaseNetworkEnvironment'; export interface NagaTestSpecificConfigs { realmId?: bigint; } export type NagaTestSignatures = typeof nagaTestSignatures; export declare class NagaTestEnvironment extends BaseNetworkEnvironment { constructor(options?: { rpcUrlOverride?: string; }); protected getRpcUrl(overrideRpc?: string): string; protected getChainConfig(overrideRpc?: string): Chain; protected getEndpoints(): NagaEndpointsType; protected getDefaultRealmId(): bigint; } export declare const nagaTestEnvironment: NagaTestEnvironment;