export declare const mockLocation: () => {
    objectId: string;
    refId: string;
    position: {
        type: string;
        coordinates: {
            longitude: number;
            latitude: number;
        };
    };
    timestamp: string;
    velocityKph: number;
    gpsSatellites: number;
    headingDegrees: number;
    network: {
        carrier: string;
        isConnected: boolean;
        sStrength: number;
        networkType: string;
    };
};
export declare const mockLocationNetwork: () => {
    carrier: string;
    isConnected: boolean;
    sStrength: number;
    networkType: string;
};
