/** * Copyright Aquera Inc 2025 * * This source code is licensed under the BSD-3-Clause license found in the * LICENSE file in the root directory of this source tree. */ export interface StepperConfig { icon: string; size: 'sm' | 'lg'; contentBelow: boolean; manual: boolean; isVertical: boolean; } /** * Updates stepper items in manual mode * @param items - Array of stepper item elements * @param config - Stepper configuration * @param haveFlex - Whether items should have flex layout */ export declare function updateItemsInManualMode(items: any[], config: StepperConfig, haveFlex: boolean): void;