type IdentifierCategories = 'unrated' | 'palaces' | '1_star' | '2_stars' | '3_stars' | '4_stars' | '5_stars'; export type HouseCategories = { id: string; type: 'houseCategory'; external_id: number; identifier: IdentifierCategories; }; export {};