import { ComponentPropsWithoutRef } from 'react'; import { LayoutUtilProps } from '../../types'; /** * Props for the StepperFinalPanel component * @extends ComponentPropsWithoutRef<"div"> * @extends LayoutUtilProps */ export type StepperFinalPanelProps = Omit, "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag"> & LayoutUtilProps; /** * Final panel component displayed when all stepper steps are completed. * * Features: * - Displays only when all steps are completed * - Smooth fade-in animation on completion * - Automatic overflow handling with scroll support * - Accessible with proper ARIA roles * - Layout utilities for positioning and spacing * - Motion animations for smooth transitions * - Focus management for keyboard navigation * - Responsive design with flexible layout * - Context-based visibility control * * @example * *

Congratulations!

*

You have successfully completed all steps.

* *
*/ export declare const StepperFinalPanel: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref">, "onDrag" | "onDragEnd" | "onDragStart" | "onAnimationStart"> & LayoutUtilProps & import('react').RefAttributes>;