/**
 * Enum representing the different types of keyrings supported.
 */
export declare enum KeyringType {
    /**
     * Represents a hierarchical deterministic (HD) keyring.
     */
    Hd = "hd",
    /**
     * Represents a keyring that directly stores private keys.
     */
    PrivateKey = "private-key",
    /**
     * Represents a keyring that implements the QR protocol.
     *
     * See: https://eips.ethereum.org/EIPS/eip-4527
     */
    Qr = "qr",
    /**
     * Represents keyring backed by a Snap.
     */
    Snap = "snap",
    /**
     * Represents keyring backed by a Ledger hardware wallet.
     */
    Ledger = "ledger",
    /**
     * Represents keyring backed by a Lattice hardware wallet.
     */
    Lattice = "lattice",
    /**
     * Represents keyring backed by a Trezor hardware wallet.
     */
    Trezor = "trezor",
    /**
     * Represents keyring backed by a OneKey hardware wallet.
     */
    OneKey = "onekey",
    /**
     * Represents keyring for money accounts.
     */
    Money = "money"
}
//# sourceMappingURL=keyring-type.d.cts.map