import { OnInit } from '@angular/core';
import { NgWizardService } from '../ng-wizard.service';
import { NgWizardStepData } from '../ng-wizard-step/ng-wizard-step-data.interface';
import { NgWizardOptions } from '../ng-wizard-options/ng-wizard-options.interface';
export declare class NgWizardNavigationComponent implements OnInit {
    private service;
    stepData$: any;
    currentStepData: any;
    wizardOptions: NgWizardOptions;
    constructor(service: NgWizardService);
    ngOnInit(): void;
    goToStep(stepData: NgWizardStepData): void;
}
