import { PassThroughPropsWithRef } from '../../types'; /** * Props for the DrillDownContent component. * * @extends PassThroughPropsWithRef<"div"> */ export type DrillDownContentProps = PassThroughPropsWithRef<"div"> & {}; /** * Scrollable content area for DrillDown screens. * * Contains the main content for a drilldown step. Handles overflow with vertical scrolling. * * Features: * - Automatic scroll behavior for long content * - Full width content area * * @example * ```tsx * *

Main content for this step.

*
* ``` */ export declare const DrillDownContent: import('react').ForwardRefExoticComponent & import('react').RefAttributes>;