import { ComponentPropsWithoutRef } from 'react'; import { LayoutUtilProps } from '../../types'; /** * Props for the StepperPanel component * @extends ComponentPropsWithoutRef<"div"> * @extends LayoutUtilProps */ export type StepperPanelProps = Omit, "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag"> & LayoutUtilProps & { /** * Unique identifier for the panel. * Must match the controls prop of the corresponding Stepper.Step. */ id: string; }; /** * Content panel component for displaying step content in the Stepper. * * Features: * - Displays content for the current step only * - Smooth fade-in/fade-out animations * - 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 * *

Personal Information

*
* * *
*
* * @example * *
*

Contact Details

*

Please provide your contact information.

*
*
*/ export declare const StepperPanel: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref">, "onDrag" | "onDragEnd" | "onDragStart" | "onAnimationStart"> & LayoutUtilProps & { /** * Unique identifier for the panel. * Must match the controls prop of the corresponding Stepper.Step. */ id: string; } & import('react').RefAttributes>;