import { IEthereumProvider } from "../../../types";
export interface JsonRpcTransactionData {
    from?: string;
    to?: string;
    gas?: string | number;
    gasPrice?: string | number;
    value?: string | number;
    data?: string;
    nonce?: string | number;
}
export declare function createLocalAccountsProvider(provider: IEthereumProvider, hexPrivateKeys: string[]): import("../../../types").EthereumProvider;
export declare function createHDWalletProvider(provider: IEthereumProvider, mnemonic: string, hdpath?: string, initialIndex?: number, count?: number): import("../../../types").EthereumProvider;
export declare function createSenderProvider(provider: IEthereumProvider, from?: string): import("../../../types").EthereumProvider;
//# sourceMappingURL=accounts.d.ts.map