import { OnInit } from '@angular/core';
import { OnDestroyMixin } from '@w11k/ngx-componentdestroyed';
import { PresentationService } from '../core/presentation.service';
import { Slide } from '../core/presentation.types';
export declare class ExportRouteComponent extends OnDestroyMixin implements OnInit {
    private readonly presentation;
    slides: Slide[] | undefined;
    constructor(presentation: PresentationService);
    ngOnInit(): void;
}
