import type { SignerContext } from "@ledgerhq/ledger-wallet-framework/signer"; import type { GetViewKeyFn } from "@ledgerhq/coin-aleo/signer/getViewKey"; import type { CreateSigner } from "../../../../bridge/setup"; import type { Resolver } from "./types"; export type ViewKeyResolver = (signerContext: SignerContext) => GetViewKeyFn; /** * Inject the `signer` so it can be used by the resolver function. * @param signerFactory * @param viewKeyResolver * @returns Resolver */ export declare function createViewKeyResolver(signerFactory: CreateSigner, viewKeyResolver: ViewKeyResolver): Resolver; //# sourceMappingURL=resolver.d.ts.map