import { Client } from '../../Client'; import { StaysSearchResult } from '../StaysTypes'; import { Resource } from '../../Resource'; import { DuffelResponse } from '../../types'; export declare class SearchResults extends Resource { /** * Endpoint path */ path: string; constructor(client: Client); /** * Fetch all rates for the given search result * @param {string} searchResultId - The ID of the search result to fetch rates for */ fetchAllRates: (searchResultId: string) => Promise>; }