export interface EntrypointConfig { networkProviderUrl: string; networkProviderKind: string; chainId: string; } export declare class TestnetEntrypointConfig { networkProviderUrl: string; networkProviderKind: string; chainId: string; constructor({ networkProviderUrl, networkProviderKind, chainId, }?: Partial); } export declare class DevnetEntrypointConfig { networkProviderUrl: string; networkProviderKind: string; chainId: string; constructor({ networkProviderUrl, networkProviderKind, chainId, }?: Partial); } export declare class MainnetEntrypointConfig { networkProviderUrl: string; networkProviderKind: string; chainId: string; constructor({ networkProviderUrl, networkProviderKind, chainId, }?: Partial); } export declare class LocalnetEntrypointConfig { networkProviderUrl: string; networkProviderKind: string; chainId: string; constructor({ networkProviderUrl, networkProviderKind, chainId, }?: Partial); }