import React from 'react';
import { type ComposableProps } from '../../../lib/slot';
import type { StepState } from './StepsContext';
export interface StepDescriptionProps extends ComposableProps<'div'> {
/**
* Description text.
*/
children: React.ReactNode;
/**
* Step state (auto-determined if not provided)
*/
state?: StepState;
}
/**
* StepDescription Component
*
* A composable component for step descriptions.
* Typically used within StepContent.
*
* @public
*
* @example
* ```tsx
*