import { PassThroughPropsWithRef } from '../../types'; /** * Props for the DrillDownFooter component. * * @extends PassThroughPropsWithRef<"footer"> */ export type DrillDownFooterProps = PassThroughPropsWithRef<"footer"> & {}; /** * Footer section for DrillDown screens with action buttons. * * Provides a fixed bottom area for navigation buttons and actions. Typically contains * DrillDown.NextButton and DrillDown.PrevButton components. * * Features: * - Fixed positioning at bottom of drilldown screen * - Standard padding and layout for actions * * @example * ```tsx * * * Back * Continue * * * ``` */ export declare const DrillDownFooter: import('react').ForwardRefExoticComponent & import('react').RefAttributes>;