import { CoordsEntity } from '../../../general/entities/coords.entity';
import { INatipayAddress } from '../interfaces/i-address';
export declare class NatiapyAddressEntity implements INatipayAddress {
    city: string;
    complement: string | null;
    coords: CoordsEntity;
    country: string | null | undefined;
    neighborhood: string;
    postalCode: string;
    state: string;
    streetName: string;
    streetNumber: string;
    constructor(data?: Partial<NatiapyAddressEntity>);
}
