import { Provider } from 'ethers'; import { Address } from '../types/Address'; import { EvmChainData } from '../types/EvmChainData'; type RecordData = { owner: Address; resolver: Address; ttl: bigint; }; declare function getDomainOwner(params: { node: string; config: EvmChainData; provider: Provider; registryAddress: Address | undefined; }): Promise
; declare function getRecordData(params: { node: string; config: EvmChainData; provider: Provider; registryAddress: Address | undefined; }): Promise; export declare const registryFetchers: { getDomainOwner: typeof getDomainOwner; getRecordData: typeof getRecordData; }; export {}; //# sourceMappingURL=registry.fetchers.d.ts.map