import * as i0 from "@angular/core"; /** * A configuration service for the Step Indeicator component. * * You can inject this service, typically in your root component, and customize its properties * to provide default values for all accordions used in the application. */ export declare class UsaStepIndicatorConfig { /** * Hides labels on each step when set to true * @default false */ hideLabels: boolean; /** * Centers labels on each step when set to true - * if hideLabels is also true, then labels will be hidden * @default false */ centerLabels: boolean; /** * Displays step counters in between each step * @default true */ displayCounters: boolean; /** * Shrinks the size of counters if they are displayed * @default false */ smallCounters: boolean; /** * Defines whether to place the header above or below the steps. * String value of 'top' represents above while 'bottom' represents below * @default bottom */ headerPosition: 'top' | 'bottom'; /** * Disable the ability to click on specific step segments in step indicator */ disableStepSelection: boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }