import { BaseEntity } from '../../../../entities/core-entities/index.js'; /** * GetToursRequestDto class for sending request * to get tours from the API. * * @param tourId Optional filter by tour ID * @param sportId Optional filter by sport ID */ export declare class GetToursRequestDto implements BaseEntity { [key: string]: unknown; tourId?: number; sportId?: number; constructor(data?: Partial); get EntityId(): string; }