import type { BrazilianState } from '@natrave/tournaments-service-types'; export interface IAddress { id: number; createdAt: Date; updatedAt: Date; streetAddress: string; complement: string | null; neighborhood: string; number: string; city: string; state: BrazilianState; postalCode: string; country: string; latitude: number; longitude: number; } //# sourceMappingURL=address.entity.d.ts.map