import { ActivatedRoute } from '@angular/router';
import { OnDestroyMixin } from '@w11k/ngx-componentdestroyed';
import { Observable } from 'rxjs';
import { Slide } from '../core/presentation.types';
import { SlideBySlideTitleService } from './slide-by-slide-title.service';
import { SlideBySlideService } from './slide-by-slide.service';
export declare class SlideBySlideRouteComponent extends OnDestroyMixin {
    private readonly route;
    private readonly service;
    private readonly title;
    slide$: Observable<Slide>;
    constructor(route: ActivatedRoute, service: SlideBySlideService, title: SlideBySlideTitleService);
}
