import { DestinationRepository } from './repositories/destination.repository';
import { CreateDestinationDto, UpdateDestinationDto } from './dto';
export declare class DestinationService {
    private readonly destRepo;
    constructor(destRepo: DestinationRepository);
    findAll(query?: {
        page?: number;
        limit?: number;
        search?: string;
    }): Promise<{
        items: import("../../entities").DestinationEntity[];
        meta: {
            total: number;
            page: number;
            limit: number;
            totalPages: number;
        };
    }>;
    findAllForLookup(): Promise<import("../../entities").DestinationEntity[]>;
    findById(id: string): Promise<import("../../entities").DestinationEntity>;
    create(dto: CreateDestinationDto): Promise<{
        id: string;
        message: string;
    }>;
    update(id: string, dto: UpdateDestinationDto): Promise<{
        id: string;
        message: string;
    }>;
    remove(id: string): Promise<{
        message: string;
    }>;
}
