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 * * Step 1 * Description text * * ``` * * @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 StepDescription: React.ForwardRefExoticComponent>; //# sourceMappingURL=StepDescription.d.ts.map