import { Repository } from 'typeorm';
import { ClsService } from 'nestjs-cls';
import { TenantAwareRepository } from '../../../common/repositories/tenant-aware.repository';
import { HotelEntity } from '../../../entities/hotel.entity';
export declare class HotelRepository extends TenantAwareRepository<HotelEntity> {
    constructor(repo: Repository<HotelEntity>, cls: ClsService);
    findAllWithDestination(): Promise<HotelEntity[]>;
    findByIdWithDestination(id: string): Promise<HotelEntity | null>;
    findByNameAndDestination(name: string, destinationId: string): Promise<HotelEntity | null>;
    findByShortCode(code: string): Promise<HotelEntity | null>;
}
