/**
 * Object containing URLs for fleet management endpoints.
 * These URLs are used for various fleet operations such as vehicle, driver, fuel, maintenance, etc.
 */
declare const fleetRoutesUrl: {
    module: string;
    /**
     * Endpoint to manage driver master records
     */
    driver: string;
    /**
     * Endpoint to manage vehicle master records
     */
    vehicle: string;
    /**
     * Endpoint to manage fuel logs
     */
    fuel: string;
    /**
     * Endpoint to manage maintenance records
     */
    maintenance: string;
    /**
     * Endpoint to manage trip logs
     */
    trip: string;
    /**
     * Endpoint to manage incident reports
     */
    incident: string;
    /**
     * Endpoint to manage vehicle assignments
     */
    vehicleAssignment: string;
    /**
     * Endpoint to manage route master
     */
    route: string;
    /**
     * Endpoint to manage route stops
     */
    routeStop: string;
    /**
     * Endpoint for route allocation (passenger ↔ route + pickup/drop). API path remains 'student-transport' for backward compatibility.
     */
    studentTransport: string;
    /**
     * Endpoint to manage fleet configuration
     */
    configuration: string;
};
export { fleetRoutesUrl };
