import { type IAddressResponse } from '../../types/index.js';
import { Collection } from '../../internal/base/index.js';
import { Address } from './address.js';
export declare class AddressCollection extends Collection<IAddressResponse, Address> {
    fromJson(data: IAddressResponse): Address;
}
