import { TemplateRef } from '@angular/core'; export interface PStepperConfig { activeStep?: number; orientation?: 'vertical' | 'horizontal'; linear?: boolean; transitionOptions?: string; headerTemplate?: TemplateRef; startTemplate?: TemplateRef; separatorTemplate?: TemplateRef; endTemplate?: TemplateRef; [key: string]: unknown; }