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(accountType: AccountType, account: Address, chain: Chain, provider?: ProviderConfig, hcaFactory?: Address): Promise<{ accounts: Address[]; threshold: number; } | null>; declare function getExecutors(accountType: AccountType, account: Address, chain: Chain, provider?: ProviderConfig): Promise; declare function isValidatorInitialized(account: Address, chain: Chain, validatorAddress: Address, provider?: ProviderConfig): Promise; export { getValidators, getExecutors, getOwners, isValidatorInitialized }; //# sourceMappingURL=read.d.ts.map