import { CdkStepper } from '@angular/cdk/stepper'; import { PipeTransform } from '@angular/core'; import * as i0 from "@angular/core"; /** * Check to see if the stepper is on the last step of a MatStepper. * * @author Will Davis */ export declare class OnLastStepPipe implements PipeTransform { /** * @param currentStep the index of the currently selected step * @param stepper the CdkStepper * @returns whether the stepper is on the last step */ transform(currentStep: number | null | undefined, stepper: CdkStepper | null | undefined): boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵpipe: i0.ɵɵPipeDeclaration; }