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