import { TonSigner } from "@ledgerhq/coin-ton/signer";
import { TonAccount, Transaction } from "@ledgerhq/coin-ton/types";
import type { Bridge } from "@ledgerhq/types-live";
import type { Resolver } from "../../hw/getAddress/types";
declare const bridge: Bridge<Transaction, TonAccount>;
declare const messageSigner: {
    signMessage: (signerContext: import("@ledgerhq/ledger-wallet-framework/lib/signer").SignerContext<TonSigner>) => (deviceId: string, account: import("@ledgerhq/types-live").Account, { message }: import("@ledgerhq/types-live").AnyMessage) => Promise<{
        rsv: {
            r: string;
            s: string;
            v: number;
        };
        signature: string;
    }>;
};
declare const resolver: Resolver;
declare const cliTools: {
    options: never[];
    inferTransactions: (transactions: Array<{
        account: import("@ledgerhq/types-live").AccountLike;
        transaction: Transaction;
    }>, opts: Record<string, string>) => Transaction[];
};
export { bridge, cliTools, messageSigner, resolver };
//# sourceMappingURL=setup.d.ts.map