import React from "react"; export interface BaseComponentProps { className?: string; style?: React.CSSProperties; } export interface BaseFormProps { onSubmit?: () => void | Promise; onBack?: () => void; onNext?: () => void; isLoading?: boolean; error?: string | null; } export interface BaseStepProps extends BaseFormProps { onContinue?: () => void; onReset?: () => void; } export interface SelectOption { value: string; label: string; } export interface CountryCodeOption { code: string; label: string; }