import { type Address, type Chain } from 'viem'; import type { AccountType, ProviderConfig } from '../types'; declare function getValidators(accountType: AccountType, account: Address, chain: Chain, provider?: ProviderConfig): Promise
; declare function getOwners(account: Address, chain: Chain, provider?: ProviderConfig): Promise<{ accounts: Address[]; threshold: number; } | null>; declare function getExecutors(accountType: AccountType, account: Address, chain: Chain, provider?: ProviderConfig): Promise; export { getValidators, getExecutors, getOwners }; //# sourceMappingURL=read.d.ts.map