import { type WebAuthnKey } from "@zerodev/webauthn-key"; import { type Chain, type Client, type Transport } from "viem"; import type { WeightedSigner } from "../toWeightedValidatorPlugin.js"; export type WebAuthnModularSignerParams = { webAuthnKey: WebAuthnKey; }; export declare const encodeWebAuthnPubKey: (pubKey: WebAuthnKey) => `0x${string}`; export declare const toWebAuthnSigner: (client: Client, { webAuthnKey }: WebAuthnModularSignerParams) => Promise; //# sourceMappingURL=toWebAuthnSigner.d.ts.map