import { ButtonProps } from '../Button';
import { DataTrackingId } from '../../types';
/**
* Props for the DrillDownPrevButton component.
*
* @extends ButtonProps
* @extends DataTrackingId
*/
export type DrillDownPrevButtonProps = ButtonProps & DataTrackingId;
/**
* Button that navigates to the previous drilldown screen.
*
* Decrements the drilldown index by one when clicked. Automatically integrates with the
* DrillDown context for navigation. Preserves custom onClick handlers.
*
* Features:
* - Automatic navigation to previous index
* - Automatic analytics tracking via data-tracking-id
* - All Button component props supported
* - Default accessible label for screen readers
*
* @example
* ```tsx
* Back
* Go Back
* ```
*/
export declare const DrillDownPrevButton: import('react').ForwardRefExoticComponent>;