import { Client } from '../../Client'; import { StaysLoyaltyProgramme } from '../StaysTypes'; import { Resource } from '../../Resource'; import { DuffelResponse } from '../../types'; export declare class LoyaltyProgrammes extends Resource { /** * Endpoint path */ path: string; constructor(client: Client); /** * List all the loyalty programmes supported by Duffel Stays */ list: () => Promise>; }