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