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 * * Step 1 * Description * * ``` * * @remarks * - Wraps the HTML `
` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically styled based on step state. */ export declare const StepTitle: React.ForwardRefExoticComponent>; //# sourceMappingURL=StepTitle.d.ts.map