export interface IMottuAddress {
    city: 'SP';
    complement: string;
    neighborhood: string;
    number: string;
    state: 'SP';
    street: string;
    zipCode: string;
}
