/** * StepHeader Component * Header component for step-by-step flows with title and subtitle * * @package @umituz/react-native-design-system */ import React from "react"; import { type ViewStyle, type StyleProp } from "react-native"; export interface StepHeaderConfig { showStepIndicator?: boolean; currentStep?: number; totalSteps?: number; titleAlignment?: "left" | "center" | "right"; titleFontSize?: number; subtitleFontSize?: number; spacing?: { marginBottom?: number; paddingHorizontal?: number; }; } export interface StepHeaderProps { title: string; subtitle?: string; config?: StepHeaderConfig; style?: StyleProp; } export declare const StepHeader: React.FC;