export interface UseRnsAddressParameters {
    name?: string;
    chainId?: number;
}
export declare function useRnsAddress({ name, chainId: targetChainId }: UseRnsAddressParameters): import("wagmi").UseReadContractReturnType<readonly [{
    readonly inputs: readonly [{
        readonly internalType: "uint256";
        readonly name: "tokenId";
        readonly type: "uint256";
    }];
    readonly name: "ownerOf";
    readonly outputs: readonly [{
        readonly internalType: "address";
        readonly name: "";
        readonly type: "address";
    }];
    readonly stateMutability: "view";
    readonly type: "function";
}], "ownerOf", [bigint], `0x${string}`>;
