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