import { Provider, TransactionRequest, TransactionResponse } from "@ethersproject/abstract-provider"; import { Signer } from "@ethersproject/abstract-signer"; import { Bytes } from "@ethersproject/bytes"; import { Networkish } from "@ethersproject/networks"; import { ConnectionInfo } from "@ethersproject/web"; import { BaseProvider, Event } from "./base-provider"; export declare class JsonRpcSigner extends Signer { readonly provider: JsonRpcProvider; _index: number; _address: string; constructor(constructorGuard: any, provider: JsonRpcProvider, addressOrIndex?: string | number); connect(provider: Provider): JsonRpcSigner; connectUnchecked(): JsonRpcSigner; getAddress(): Promise; sendUncheckedTransaction(transaction: TransactionRequest): Promise; signTransaction(transaction: TransactionRequest): Promise; sendTransaction(transaction: TransactionRequest): Promise; signMessage(message: Bytes | string): Promise; unlock(password: string): Promise; } declare class UncheckedJsonRpcSigner extends JsonRpcSigner { sendTransaction(transaction: TransactionRequest): Promise; } export declare class JsonRpcProvider extends BaseProvider { readonly connection: ConnectionInfo; _pendingFilter: Promise; _nextId: number; constructor(url?: ConnectionInfo | string, network?: Networkish); static defaultUrl(): string; getSigner(addressOrIndex?: string | number): JsonRpcSigner; getUncheckedSigner(addressOrIndex?: string | number): UncheckedJsonRpcSigner; listAccounts(): Promise>; send(method: string, params: Array): Promise; perform(method: string, params: any): Promise; _startEvent(event: Event): void; _startPending(): void; _stopEvent(event: Event): void; static hexlifyTransaction(transaction: TransactionRequest, allowExtra?: { [key: string]: boolean; }): { [key: string]: string; }; } export {};