interface DialogStepIndicatorProps {
    totalSteps: number;
    currentStepIndex: number;
}
/**
 * Text-style step indicator for multi-step dialogs.
 * Displays "X of Y" with hidden accessible text of "Step" for additional context for assistive technologies.
 */
export declare function DialogStepIndicator({ totalSteps, currentStepIndex }: DialogStepIndicatorProps): import("react/jsx-runtime").JSX.Element;
export {};
