import { EvmAddress } from "@ledgerhq/coin-evm/types/signer";
import { CreateSigner } from "../../setup";
export type Signer = {
    getAddress: (path: string) => Promise<EvmAddress>;
    signTransaction: (path: string, tx: string) => Promise<string>;
};
export declare const createSigner: CreateSigner<Signer>;
//# sourceMappingURL=Eth.d.ts.map