/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { CdkStepper } from './stepper'; /** Button that moves to the next step in a stepper workflow. */ import * as ɵngcc0 from '@angular/core'; export declare class CdkStepperNext { _stepper: CdkStepper; /** Type of the next button. Defaults to "submit" if not specified. */ type: string; constructor(_stepper: CdkStepper); _handleClick(): void; static ɵfac: ɵngcc0.ɵɵFactoryDeclaration; static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration; } /** Button that moves to the previous step in a stepper workflow. */ export declare class CdkStepperPrevious { _stepper: CdkStepper; /** Type of the previous button. Defaults to "button" if not specified. */ type: string; constructor(_stepper: CdkStepper); _handleClick(): void; static ɵfac: ɵngcc0.ɵɵFactoryDeclaration; static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration; } //# sourceMappingURL=stepper-button.d.ts.map