import { RiderResponseDTO } from './rider-response'; export interface CoordinateDTO { longitude: number; latitude: number; } export declare class CreateRiderLocationDTO { city?: string; country?: string; fullAddress: string; googlePlaceId?: string; coordinates: CoordinateDTO; note?: string; placeName?: string; state?: string; street?: string; streetNumber?: string; timeZone?: string; unit?: string; zip?: string; } export declare class UpdateRiderLocationDTO { id: string; city?: string; country?: string; fullAddress?: string; googlePlaceId?: string; coordinates?: CoordinateDTO; note?: string; placeName?: string; state?: string; street?: string; streetNumber?: string; timeZone?: string; unit?: string; zip?: string; } export declare class RiderLocationResponseDTO { id: string; city: string; country: string; fullAddress: string; googlePlaceId: string; coordinates: CoordinateDTO; note: string; placeName: string; state: string; street: string; streetNumber: string; timeZone: string; unit: string; zip: string; rider?: RiderResponseDTO; }