import { TemplateRef } from '@angular/core'; /** * Defines valid templates in Stepper. * @group Templates */ export interface StepperTemplates { /** * Custom start template. */ start(): TemplateRef; /** * Custom end template. */ end(): TemplateRef; } /** * Custom active step change event. * @see {@link Stepper.onActiveStepChange} * @group Events */ export interface ActiveStepChangeEvent { /** * Emitted when the value changes. */ value: number | undefined | null; }