import { IMottuAddress } from '../interfaces';
export declare class MottuAddressEntity implements IMottuAddress {
    city: 'SP';
    complement: string;
    neighborhood: string;
    number: string;
    state: 'SP';
    street: string;
    zipCode: string;
    constructor(data?: Partial<MottuAddressEntity>);
}
