import type { Chain, Client, Hex, Transport } from "viem"; import type { SmartAccount } from "viem/account-abstraction"; import type { WeightedValidatorContractVersion } from "../toWeightedValidatorPlugin.js"; export type GetCurrentSignersReturnType = Array<{ encodedPublicKey: Hex; weight: number; }>; export declare function getCurrentSigners(client: Client, { validatorContractVersion }: { validatorContractVersion: WeightedValidatorContractVersion; }): Promise; //# sourceMappingURL=getCurrentSigners.d.ts.map