import { Client } from '../Client'; import { CarsSearchParams, CarsSearch } from './CarsTypes'; import { Resource } from '../Resource'; import { DuffelResponse } from '../types'; import { Bookings } from './Bookings'; import { Quotes } from './Quotes'; export declare class Cars extends Resource { /** * Endpoint path */ path: string; bookings: Bookings; quotes: Quotes; constructor(client: Client); /** * Search for available rental cars * @param {object} params - The search parameters */ search: (params: CarsSearchParams) => Promise>; }