export declare class TrackingLocationUpdateDto {
    requestId?: string;
    tripId: string;
    latitude: number;
    longitude: number;
    timestamp: string;
    speed?: number;
    heading?: number;
    bearing?: number;
    accuracy?: number;
    address?: string;
    pointId?: string;
}
export declare class TrackingJoinDto {
    tripId: string;
}
export type LiveLocationPayload = {
    requestId: string;
    tripId: string;
    userId: string;
    latitude: number;
    longitude: number;
    timestamp: string;
    speed?: number;
    heading?: number;
    accuracy?: number;
    address?: string;
    pointId?: string;
};
