/** * Onboarding Progress Bar & Step Progress Animations * * IMPORTANT: These values are COPIED VERBATIM from the original components. * DO NOT MODIFY WITHOUT APPROVAL. */ import type React from "react"; /** * COPIED VERBATIM FROM: components/onboarding/steps/file-upload-step.tsx:550-556 * Progress bar fill animation for file uploads */ export declare const FILE_UPLOAD_PROGRESS: { /** Container for the progress bar */ container: string; /** The fill bar that animates */ bar: string; }; /** * Generate progress bar fill style * COPIED VERBATIM FROM: components/onboarding/steps/file-upload-step.tsx:553 */ export declare function getProgressStyle(progress: number): React.CSSProperties; /** * COPIED VERBATIM FROM: components/onboarding/onboarding-layout.tsx:93 * Header height transition on scroll */ export declare const HEADER_TRANSITION: { /** Base transition class for header height changes */ className: string; /** Heights for different states */ heights: { expanded: string; collapsed: string; }; }; /** * Step progress indicator states * Used for the step dots/indicators in the header */ export declare const STEP_INDICATOR: { /** Completed step styling */ completed: string; /** Current step styling */ current: string; /** Upcoming step styling */ upcoming: string; /** Connector line between steps */ connector: string; connectorCompleted: string; }; //# sourceMappingURL=progress.d.ts.map