import { FC, PropsWithChildren } from 'react'; export type UseAddressName = ({ address, networkId, }: { address: string; networkId: string; }) => string | undefined; interface AddressNameContextProps { useAddressName: UseAddressName; } export declare const useAddressName: UseAddressName; export interface AddressNameProviderProps extends PropsWithChildren, AddressNameContextProps { } export declare const AddressNameProvider: FC; export {};