import { FetchState, ID } from '../../commonStateTypes/common'; import { Address } from '../../entity/address/addressState'; import { ZeniAPIStatus } from '../../responsePayload'; import { RootState } from '../../rootStateTypes'; import { AddressType, AddressUpdatableInfo, NewAddressData } from './addressViewState'; export declare function getAllNewAddresses(state: RootState): NewAddressData[]; export declare function getNewAddress(type: AddressType, state: RootState): NewAddressData | undefined; export declare function getAddress(state: RootState, addressId: ID): { fetchState: FetchState; address?: Address; fetchError?: ZeniAPIStatus; }; export declare const getFormattedAddress: (address: Address | AddressUpdatableInfo) => string;